holygrail2 1.0.79 → 1.0.81
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/package.json +1 -1
- package/scss/base/_helpers.scss +27 -0
package/package.json
CHANGED
package/scss/base/_helpers.scss
CHANGED
|
@@ -900,12 +900,39 @@ strong {
|
|
|
900
900
|
}
|
|
901
901
|
}
|
|
902
902
|
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
.min-scrollcustom-x.has-dark {
|
|
907
|
+
overflow: auto;
|
|
908
|
+
&::-webkit-scrollbar {
|
|
909
|
+
height: 5px;
|
|
910
|
+
}
|
|
911
|
+
/* Track */
|
|
912
|
+
&::-webkit-scrollbar-track {
|
|
913
|
+
background: $c-middle-grey;
|
|
914
|
+
-webkit-border-radius: 10px;
|
|
915
|
+
border-radius: 0px;
|
|
916
|
+
}
|
|
917
|
+
/* Handle */
|
|
918
|
+
&::-webkit-scrollbar-thumb {
|
|
919
|
+
-webkit-border-radius: 10px;
|
|
920
|
+
border-radius: 10px;
|
|
921
|
+
background: $c-primary;
|
|
922
|
+
}
|
|
923
|
+
&::-webkit-scrollbar-thumb:window-inactive {
|
|
924
|
+
background: $c-primary;
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
|
|
903
929
|
.leading-1 {
|
|
904
930
|
line-height: 1;
|
|
905
931
|
}
|
|
906
932
|
|
|
907
933
|
.tag-product {
|
|
908
934
|
position: absolute;
|
|
935
|
+
z-index: 10;
|
|
909
936
|
top: 0;
|
|
910
937
|
left: 0;
|
|
911
938
|
|