empower_front/src/assets/main.css
2025-06-17 17:38:50 +08:00

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");
}