feat(component): Add Footer component

This commit is contained in:
kailong321200875
2022-01-22 10:54:28 +08:00
parent e496096539
commit f81e996a42
18 changed files with 940 additions and 837 deletions

View File

@@ -1,33 +0,0 @@
.hover-tigger {
@apply flex h-full pt-1px px-10px cursor-pointer items-center;
transition: background var(--transition-time-02);
&:hover {
background-color: var(--top-header-hover-color);
}
}
.border-bottom {
border-bottom: 1px solid var(--top-tool-border-color);
}
.border-bottom--after {
@apply relative;
&:after {
content: '';
border-top: 1px solid var(--top-tool-border-color);
@apply absolute bottom-0 left-0 w-full h-1px;
}
}
.border-top {
border-top: 1px solid var(--top-tool-border-color);
}
.border-top--before {
@apply relative;
&:before {
content: '';
border-top: 1px solid var(--top-tool-border-color);
@apply absolute top-0 left-0 w-full h-1px;
}
}

View File

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