30 lines
549 B
CSS
30 lines
549 B
CSS
@import "./base.css";
|
|
|
|
#app {
|
|
overflow: hidden;
|
|
font-weight: normal;
|
|
background-color: theme("colors.body");
|
|
background-image: url("./img/background.jpg");
|
|
background-size: cover;
|
|
color: #fff;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 5px !important;
|
|
height: 8px !important;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
box-shadow: inset 0 0 5px grey;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: theme("colors.info");
|
|
border-radius: 10px;
|
|
box-shadow: theme("boxShadow.custom");
|
|
}
|