16 lines
200 B
SCSS
16 lines
200 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #333;
|
|
}
|
|
|
|
html, body, #app, .el-container, .el-aside, .el-main {
|
|
height: 100%;
|
|
}
|