28 lines
491 B
SCSS
28 lines
491 B
SCSS
// import dark theme
|
|
@use 'element-plus/theme-chalk/src/dark/css-vars.scss' as *;
|
|
|
|
// :root {
|
|
// --ep-color-primary: red;
|
|
// }
|
|
|
|
code {
|
|
border-radius: 2px;
|
|
padding: 2px 4px;
|
|
background-color: var(--ep-color-primary-light-9);
|
|
color: var(--ep-color-primary);
|
|
}
|
|
|
|
#nprogress {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#nprogress .bar {
|
|
background: rgb(13, 148, 136);
|
|
opacity: 0.75;
|
|
position: fixed;
|
|
z-index: 1031;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
} |