jclib-ui 1.0.39 → 1.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jclib-ui.es.js +18 -5
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +18 -5
- package/dist/jclib-ui.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/jclib-ui.es.js
CHANGED
|
@@ -21491,10 +21491,6 @@ const MainContainer = styled.main`
|
|
|
21491
21491
|
width: var(--scroll-width);
|
|
21492
21492
|
height: 6px;
|
|
21493
21493
|
background-color: var(--sc-sb-color-bg);
|
|
21494
|
-
|
|
21495
|
-
@media print {
|
|
21496
|
-
background-color: transparent;
|
|
21497
|
-
}
|
|
21498
21494
|
}
|
|
21499
21495
|
|
|
21500
21496
|
&::-webkit-scrollbar-thumb {
|
|
@@ -21506,6 +21502,23 @@ const MainContainer = styled.main`
|
|
|
21506
21502
|
padding-inline: 8px;
|
|
21507
21503
|
}
|
|
21508
21504
|
|
|
21505
|
+
@media print {
|
|
21506
|
+
& {
|
|
21507
|
+
scrollbar-width: none;
|
|
21508
|
+
}
|
|
21509
|
+
|
|
21510
|
+
&::-webkit-scrollbar {
|
|
21511
|
+
width: 0;
|
|
21512
|
+
height: 0;
|
|
21513
|
+
background-color: transparent;
|
|
21514
|
+
}
|
|
21515
|
+
|
|
21516
|
+
&::-webkit-scrollbar-thumb {
|
|
21517
|
+
background-color: transparent;
|
|
21518
|
+
border-radius: 0;
|
|
21519
|
+
}
|
|
21520
|
+
}
|
|
21521
|
+
|
|
21509
21522
|
.scroll--content {
|
|
21510
21523
|
max-width: ${({ hasMaxWidth }) => hasMaxWidth ? "1800px" : "auto"};
|
|
21511
21524
|
margin: 12px auto 20px;
|
|
@@ -21679,7 +21692,7 @@ const MenuOptionLink = styled(Link)`
|
|
|
21679
21692
|
border-radius: 99px;
|
|
21680
21693
|
|
|
21681
21694
|
font-family: var(--font-navbar);
|
|
21682
|
-
font-size:
|
|
21695
|
+
font-size: 1rem;
|
|
21683
21696
|
|
|
21684
21697
|
color: var(--nav-menu) !important;
|
|
21685
21698
|
text-decoration: none !important;
|