Skip to content

Commit f3de883

Browse files
fix: increase close button size of react tour in mobile view
1 parent 6da22d2 commit f3de883

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

apps/OpenSign/src/index.css

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,35 @@ body {
1212
}
1313

1414
.hide-scrollbar {
15-
-ms-overflow-style: none; /* IE and Edge */
16-
scrollbar-width: none; /* Firefox */
15+
-ms-overflow-style: none;
16+
/* IE and Edge */
17+
scrollbar-width: none;
18+
/* Firefox */
19+
}
20+
21+
@media screen and (max-width: 766px) {
22+
.bBofGr {
23+
width: 14px !important;
24+
}
1725
}
1826

1927
/* below css class replace bootstrap background color with daisy */
2028
.op-bg-primary {
2129
@apply bg-primary;
2230
}
31+
2332
.op-bg-secondary {
2433
@apply bg-secondary;
2534
}
35+
2636
.op-bg-info {
2737
@apply bg-info;
2838
}
39+
2940
.op-bg-success {
3041
@apply bg-success;
3142
}
43+
3244
.op-bg-warning {
3345
@apply bg-warning;
3446
}
@@ -37,28 +49,37 @@ body {
3749
.op-text-primary {
3850
@apply text-primary;
3951
}
52+
4053
.op-text-secondary {
4154
@apply text-secondary;
4255
}
56+
4357
.op-text-info {
4458
@apply text-info;
4559
}
60+
4661
.op-text-accent {
4762
@apply text-accent;
4863
}
64+
4965
.op-text-success {
5066
@apply text-success;
5167
}
68+
5269
.op-text-warning {
5370
@apply text-warning;
5471
}
72+
5573
.op-border-primary {
5674
@apply border-primary;
5775
}
76+
5877
/* CSS for scrollbar customization */
5978
* {
60-
scrollbar-width: thin; /* For Firefox */
61-
scrollbar-color: gray; /* For Firefox */
79+
scrollbar-width: thin;
80+
/* For Firefox */
81+
scrollbar-color: gray;
82+
/* For Firefox */
6283
}
6384

6485
/* For webkit-based browsers like Chrome, Safari */
@@ -73,4 +94,4 @@ body {
7394
*::-webkit-scrollbar-thumb {
7495
background-color: gray;
7596
border-radius: 10px;
76-
}
97+
}

0 commit comments

Comments
 (0)