hide scrollbar
This commit is contained in:
parent
9bd627198c
commit
695c9d26ae
1 changed files with 13 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue