38 lines
605 B
SCSS
38 lines
605 B
SCSS
/* 全局:禁止 body 滚动,由 app-main-scroll 内部滚动,滚动条不覆盖底部导航 */
|
|
:global(html),
|
|
:global(body) {
|
|
background: rgb(252, 252, 252);
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
:global(.v-application) {
|
|
background: rgb(252, 252, 252);
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
html,body {
|
|
height: 100%;
|
|
}
|
|
ul,ol {
|
|
list-style: none;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
img {
|
|
border: none;
|
|
}
|
|
button {
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
} |