element-plus/docs/examples/layout/index.scss
云游君 2b47933c8f
fix(theme-chalk): components details when dark (#7229)
* fix(theme-chalk): components details when dark

* fix(theme-chalk): remove step icon bg color
2022-04-19 12:38:12 +08:00

34 lines
411 B
SCSS

.row-bg {
padding: 10px 0;
background-color: #f9fafc;
}
.bg-purple-dark {
background: #99a9bf;
}
.bg-purple {
background: #d3dce6;
}
.bg-purple-light {
background: #e5e9f2;
}
.dark {
.row-bg {
padding: 10px 0;
background-color: #18191a;
}
.bg-purple-light {
background: #242526;
}
.bg-purple {
background: #46494d;
}
.bg-purple-dark {
background: #667180;
}
}