fix: 修改首页代码

This commit is contained in:
MTrun
2021-12-14 20:00:20 +08:00
parent 0b326c4e76
commit d699206cd9
16 changed files with 176 additions and 290 deletions
+9
View File
@@ -0,0 +1,9 @@
// 黑色
$--color-black: #000;
$--color-border: #333335;
$--color-bg-1: #17171a;
$--color-bg-2: #232324;
$--color-bg-3: #2a2a2b;
$--color-bg-4: #313132;
$--color-bg-5: #373739;
+10 -5
View File
@@ -1,10 +1,15 @@
@import './theme.scss';
// 颜色
$--color-red: #fc625d;
$--color-warn: #fcbc40;
$--color-success: #34c749;
// 顶部距离
$--header-height: 60px;
// 模糊
$--filter-blur-base: blur(2px);
// 毛玻璃
$--filter-color-base: rgba(0, 0, 0, 0.07);
// 边框
$--border-radius-base: 5px;
/// 阴影
$--box-shadow-base: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04) !default;
$--box-shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.12) !default;
$--box-shadow-light: 0 2px 12px 0 rgba(0, 0, 0, 0.1) !default;
$--border-radius-base: 8px;
$--border-bottom-style: 1px solid $--color-border;