You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.3 KiB
65 lines
1.3 KiB
// import dark theme
|
|
@use "element-plus/theme-chalk/src/dark/css-vars.scss" as *;
|
|
|
|
@use "element-plus/theme-chalk/src/index.scss" as *;
|
|
@use "./overview.scss" as *;
|
|
@use "./search.scss" as *;
|
|
@use "./date.scss" as *;
|
|
@use "./input.scss" as *;
|
|
@use "./select.scss" as *;
|
|
@use "./dialog.scss" as *;
|
|
@use "./tree.scss" as *;
|
|
@use "./table.scss" as *;
|
|
@use "./tabs.scss" as *;
|
|
@use "./step.scss" as *;
|
|
@use "./upload.scss" as *;
|
|
|
|
body {
|
|
font-family: 思源黑体;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
margin: 0;
|
|
font-size: var(--sy-font-size);
|
|
font-weight: 400;
|
|
}
|
|
div {
|
|
box-sizing: border-box;
|
|
}
|
|
#app {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
// height: 100%;
|
|
}
|
|
|
|
a {
|
|
color: var(--sy-color-primary);
|
|
}
|
|
|
|
code {
|
|
border-radius: 2px;
|
|
padding: 2px 4px;
|
|
background-color: var(--ep-color-primary-light-9);
|
|
color: var(--sy-color-primary);
|
|
}
|
|
.sy-water-cart-title {
|
|
height: 28px;
|
|
|
|
/* 自动布局 */
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 3px 0px 3px 16px;
|
|
border-left: 4px solid #59b295;
|
|
background: linear-gradient(90deg, rgba(134, 191, 105, 0.8) 0%, rgba(57, 147, 191, 0.1) 100%);
|
|
|
|
font-family: PingFang SC;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 22px;
|
|
letter-spacing: 0px;
|
|
|
|
color: #262626;
|
|
}
|
|
|