aiccs/src/styles/index.scss

85 lines
1.4 KiB
SCSS

@import './variables.scss';
@import './mixin.scss';
@import './transition.scss';
@import './element-ui.scss';
@import './sidebar.scss';
@import './banner.scss';
@import './easy-component.scss';
body {
height: 100%;
-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;
}
// 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-content.market{
background-color:#FEFEFE;
margin:5px;
// padding: 20px 30px;
min-height: 600px;
}
// main-container global css
.app-container {
padding: 20px;
}
// 给下拉列表内容设置最大宽度,避免内容过长超出显示屏幕范围而变形
.el-select-dropdown{
max-width:700px;
}
/* el-upload附件列表框去除'按 delete 键可删除'提示 */
.el-upload-list__item .el-icon-close-tip {
display: none !important;
}