mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
565 B
SCSS
38 lines
565 B
SCSS
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: var(--xshop-background);;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--xshop-primary);;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--xshop-secondary);
|
|
}
|
|
|
|
body{
|
|
background: var(--xshop-background);
|
|
color: var(--xshop-text);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
|
|
#website-preloader{
|
|
transition: 500ms;
|
|
}
|
|
|
|
.color-bullet{
|
|
width: 25px;
|
|
height: 25px;
|
|
margin: auto;
|
|
border-radius: 50%;
|
|
}
|