aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-12-07 05:06:52 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-12-07 05:06:52 +0530
commit06a157b8cd0bcd0bba0f6a7f81693c3cfa27d74d (patch)
tree7394a020a5fbbcc56e8d5397c259f6982b7ef767
parent4c48edc7905d6fb16b01ea707ee7e730dff78ced (diff)
hiding scrollbars while printing0.3.1
-rw-r--r--package.json2
-rw-r--r--src/views/ViewInvoice.vue3
2 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json
index 2f5c216..523d4d9 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "openbills-web",
- "version": "0.3.0",
+ "version": "0.3.1",
"private": false,
"scripts": {
"dev": "vite",
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>