mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-07 19:15:45 +08:00
33 lines
662 B
SCSS
33 lines
662 B
SCSS
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
user-select: none;
|
|
}
|
|
|
|
:root {
|
|
--primary-main: #5b5c9d;
|
|
--text-primary: #637381;
|
|
--selection-color: #f5f5f5;
|
|
}
|
|
|
|
::selection {
|
|
color: var(--selection-color);
|
|
background-color: var(--primary-main);
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
background: transparent;
|
|
}
|
|
*::-webkit-scrollbar-thumb {
|
|
border-radius: 6px;
|
|
background-color: rgba(#909399, 0.5);
|
|
}
|
|
|
|
@import "./layout.scss";
|
|
@import "./page.scss";
|