feat: 新增工作区域内容模块

This commit is contained in:
MTrun
2022-01-20 21:25:35 +08:00
parent 825b3bf2ea
commit ceb8cd5158
27 changed files with 398 additions and 106 deletions
+3
View File
@@ -25,4 +25,7 @@ $dark: (
),
// hover 边框颜色
hover-border-color: #55606e,
// 阴影
box-shadow: 0 8px 20px #5252521f
);
+3 -1
View File
@@ -26,5 +26,7 @@ $light: (
linear-gradient(90deg, transparent 14px, $--color-dark-bg-5 0)
),
// hover 边框颜色
hover-border-color: $--color-light-bg-1
hover-border-color: $--color-light-bg-1,
// 阴影
box-shadow: 0 8px 20px #0000001a
);
+7
View File
@@ -9,6 +9,13 @@
}
}
@mixin goId($block) {
$B: $namespace + '-' + $block;
##{$B} {
@content;
}
}
@mixin deep() {
:deep {
@content;
+1 -2
View File
@@ -2,7 +2,6 @@
@import './animation.scss';
@import './mixins/mixins.scss';
// extends
// 过度
.go-transition {
transition: all 0.4s;
@@ -16,7 +15,7 @@
}
.go-flex-no-wrap {
flex-wrap: nowrap!important;
flex-wrap: nowrap !important;
}
.go-absolute-center {