diff options
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index c637566..478a2c7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,7 +9,7 @@ import sidebar from './components/sidebar.vue' <navbar /> --> <sidebar /> - <main class="m-3"> + <main> <RouterView /> </main> </template> @@ -17,9 +17,17 @@ import sidebar from './components/sidebar.vue' <style> main { width: 100%; + overflow-x: scroll; + padding: 1rem 1.5rem 0 1.5rem; } #app { display: flex; flex-direction: row; + overflow-y: hidden; + max-height: 100vh; +} +.sup { + vertical-align: super; + font-size: 0.9em; } </style> |