diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-07 05:06:52 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-07 05:06:52 +0530 |
commit | 06a157b8cd0bcd0bba0f6a7f81693c3cfa27d74d (patch) | |
tree | 7394a020a5fbbcc56e8d5397c259f6982b7ef767 /src | |
parent | 4c48edc7905d6fb16b01ea707ee7e730dff78ced (diff) |
hiding scrollbars while printing0.3.1
Diffstat (limited to 'src')
-rw-r--r-- | src/views/ViewInvoice.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/views/ViewInvoice.vue b/src/views/ViewInvoice.vue index c2a6558..5cc04b8 100644 --- a/src/views/ViewInvoice.vue +++ b/src/views/ViewInvoice.vue @@ -68,5 +68,8 @@ onMounted(() => { #sidebar, #navbar, #print-button, .btn { display: none !important; } + ::-webkit-scrollbar { + display: none; + } } </style> |