wb-table/css/common.scss

90 lines
1.1 KiB
SCSS
Raw Normal View History

2022-03-13 01:23:31 +08:00
body {
line-height: 1.5;
font-size: 14px;
color: var(--color-dark-1);
}
a {
color: inherit;
text-decoration: none;
}
wc-switch {
cursor: pointer;
}
.app {
width: 100%;
height: 100vh;
}
.flex {
display: flex;
2022-03-21 16:46:49 +08:00
&.wrap {
flex-wrap: wrap;
}
2022-03-13 01:23:31 +08:00
&.column {
flex-direction: column;
}
&.ac {
justify-content: center;
}
&.alc {
align-items: center;
}
&.acc {
justify-content: center;
align-items: center;
}
&.asc {
justify-content: space-between;
align-items: center;
}
}
.wrapper {
width: 1024px;
}
.topbar {
width: 100%;
height: 64px;
background: #fff;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
.logo {
font-size: 24px;
color: var(--color-red-1);
span {
font-size: 14px;
}
}
.navs {
font-size: 16px;
.nav {
margin-left: 32px;
cursor: pointer;
transition: color 0.2s linear;
&.active,
&:hover {
text-decoration: underline;
color: var(--color-red-1);
}
}
}
}
.footer {
width: 100%;
height: 64px;
border-top: 1px solid var(--color-plain-2);
2022-03-21 16:46:49 +08:00
}