feat(Layout): Add cutMenu layout

This commit is contained in:
陈凯龙
2022-01-21 16:17:40 +08:00
parent 1522e925ba
commit ff4dd3afbf
23 changed files with 711 additions and 171 deletions

View File

@@ -7,6 +7,10 @@
}
.border-bottom {
border-bottom: 1px solid var(--top-tool-border-color);
}
.border-bottom--after {
@apply relative;
&:after {
content: '';
@@ -16,6 +20,10 @@
}
.border-top {
border-top: 1px solid var(--top-tool-border-color);
}
.border-top--before {
@apply relative;
&:before {
content: '';

View File

@@ -1,2 +1,2 @@
@import './var.css';
@import './common.less';
// @import './common.less';

View File

@@ -2,7 +2,7 @@
--dark-bg-color: #293146;
/* left menu start */
--left-menu-border-color: 'inherit';
--left-menu-border-color: '#eee';
--left-menu-max-width: 200px;
@@ -43,8 +43,20 @@
--top-tool-border-color: #eee;
--tags-view-height: 35px;
--tags-view-border-color: #eee;
/* header start */
/* tab menu start */
--tab-menu-max-width: 80px;
--tab-menu-min-width: 30px;
--tab-menu-collapse-height: 36px;
--tab-menu-border-color: #eee;
/* tab menu end */
--app-content-padding: 20px;
--transition-time-02: 0.2s;