simple modal init

This commit is contained in:
codecalm
2020-01-13 01:00:20 +01:00
parent c76f1dd184
commit 2d62e3c0b1
12 changed files with 123 additions and 47 deletions
+25 -25
View File
@@ -10,31 +10,31 @@
}
@mixin scrollbar($is-dark: false) {
&::-webkit-scrollbar {
width: 6px;
height: 6px;
transition: .3s background;
}
&::-webkit-scrollbar-thumb {
border-radius: 5px;
@if ($is-dark) {
background: transparent;
} @else {
background: $gray-400;
}
}
&:hover::-webkit-scrollbar-thumb {
background: $gray-500;
@if ($is-dark) {
background: mix(#fff, $dark, 20%);
} @else {
background: $gray-500;
}
}
//&::-webkit-scrollbar {
// width: 6px;
// height: 6px;
// transition: .3s background;
//}
//
//&::-webkit-scrollbar-thumb {
// border-radius: 5px;
//
// @if ($is-dark) {
// background: transparent;
// } @else {
// background: $gray-400;
// }
//}
//
//&:hover::-webkit-scrollbar-thumb {
// background: $gray-500;
//
// @if ($is-dark) {
// background: mix(#fff, $dark, 20%);
// } @else {
// background: $gray-500;
// }
//}
}
@mixin dark {