83 lines
1.2 KiB
SCSS
83 lines
1.2 KiB
SCSS
@import "https://at.alicdn.com/t/c/font_3492670_f2cnzrhtoo9.css";
|
|
@import './variables.module.scss';
|
|
@import './element-plus.scss';
|
|
@import './sidebar.scss';
|
|
@import './module.scss';
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
background-color: #f2f2f2;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
|
|
Microsoft YaHei, Arial, sans-serif;
|
|
}
|
|
|
|
svg,
|
|
img {
|
|
display: inline;
|
|
}
|
|
|
|
label {
|
|
font-weight: 700;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
a:focus,
|
|
a:active {
|
|
outline: none;
|
|
}
|
|
|
|
a,
|
|
a:focus,
|
|
a:hover {
|
|
cursor: pointer;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
div:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.clearfix {
|
|
&:after {
|
|
visibility: hidden;
|
|
display: block;
|
|
font-size: 0;
|
|
content: ' ';
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
// main-container global css
|
|
.app-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.search {
|
|
padding: 18px 0 0 10px;
|
|
margin-bottom: 10px;
|
|
box-shadow: var(--el-box-shadow-light);
|
|
border-radius: var(--el-card-border-radius);
|
|
border: 1px solid var(--el-card-border-color);
|
|
}
|