From f3de883e39ff1a0726251908b20c808c2ebe8f34 Mon Sep 17 00:00:00 2001 From: RaktimaNXG Date: Thu, 5 Sep 2024 09:59:07 +0530 Subject: [PATCH] fix: increase close button size of react tour in mobile view --- apps/OpenSign/src/index.css | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/apps/OpenSign/src/index.css b/apps/OpenSign/src/index.css index a3fe178d4..3aa22814d 100644 --- a/apps/OpenSign/src/index.css +++ b/apps/OpenSign/src/index.css @@ -12,23 +12,35 @@ body { } .hide-scrollbar { - -ms-overflow-style: none; /* IE and Edge */ - scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; + /* IE and Edge */ + scrollbar-width: none; + /* Firefox */ +} + +@media screen and (max-width: 766px) { + .bBofGr { + width: 14px !important; + } } /* below css class replace bootstrap background color with daisy */ .op-bg-primary { @apply bg-primary; } + .op-bg-secondary { @apply bg-secondary; } + .op-bg-info { @apply bg-info; } + .op-bg-success { @apply bg-success; } + .op-bg-warning { @apply bg-warning; } @@ -37,28 +49,37 @@ body { .op-text-primary { @apply text-primary; } + .op-text-secondary { @apply text-secondary; } + .op-text-info { @apply text-info; } + .op-text-accent { @apply text-accent; } + .op-text-success { @apply text-success; } + .op-text-warning { @apply text-warning; } + .op-border-primary { @apply border-primary; } + /* CSS for scrollbar customization */ * { - scrollbar-width: thin; /* For Firefox */ - scrollbar-color: gray; /* For Firefox */ + scrollbar-width: thin; + /* For Firefox */ + scrollbar-color: gray; + /* For Firefox */ } /* For webkit-based browsers like Chrome, Safari */ @@ -73,4 +94,4 @@ body { *::-webkit-scrollbar-thumb { background-color: gray; border-radius: 10px; -} +} \ No newline at end of file