mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
25 lines
321 B
SCSS
25 lines
321 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#app {
|
|
background: var(--el-bg-color, #fff);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#app.is-page {
|
|
padding: 10px;
|
|
}
|
|
|
|
#app.is-page.is-pure {
|
|
background-color: var(--el-fill-color-light, #f5f7fa);
|
|
padding: 0;
|
|
}
|