aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
blob: cf45876a7371f31f508ee67f7f744a6e93f082e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<script setup lang="ts">
import { RouterView } from 'vue-router'
import Sidebar from './components/Sidebar.vue'
</script>

<template>
  <sidebar />
  <main>
    <RouterView />
  </main>
</template>

<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>