hide scrollbar

This commit is contained in:
Jörn-Michael Miehe 2022-09-15 19:49:41 +00:00
parent 9bd627198c
commit 695c9d26ae

View file

@ -82,3 +82,16 @@ export default class App extends Vue {
private ticker_html = "<p>changeme</p>";
}
</script>
<style>
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
</style>