aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-12-07 04:22:03 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-12-07 04:22:03 +0530
commit464dac56714f4fb187785abda04bf3f2170af2a2 (patch)
tree83421741c7a5f4633f927d5b424fdf6fbd2257c6 /src/App.vue
parent95d531c8c356cc8e8011b7995b6ef4419c9dc383 (diff)
showing more useful information in invoice items table
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue10
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>