16 lines
336 B
SCSS
Raw Normal View History

2021-12-14 20:00:20 +08:00
@import './theme.scss';
// 颜色
$--color-red: #fc625d;
$--color-warn: #fcbc40;
$--color-success: #34c749;
// 顶部距离
$--header-height: 60px;
// 模糊
2021-12-14 16:41:43 +08:00
$--filter-blur-base: blur(2px);
// 毛玻璃
2021-12-14 16:41:43 +08:00
$--filter-color-base: rgba(0, 0, 0, 0.07);
// 边框
2021-12-14 20:00:20 +08:00
$--border-radius-base: 8px;
$--border-bottom-style: 1px solid $--color-border;