3e13c5ea2d
* Add support for multiple pages * Add support to reorder and move features to columns and pages * Add support for new sections with generic widgets
23 lines
338 B
SCSS
23 lines
338 B
SCSS
*::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 8px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: $toprak;
|
|
outline: 1px solid $toprak;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background-color: lighten($toprak, 50%);
|
|
}
|
|
|
|
::selection {
|
|
background: $toprak;
|
|
color: white;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background: $toprak;
|
|
color: white;
|
|
}
|