rt-sim-training-client/src/styles/element-ui.scss

63 lines
779 B
SCSS
Raw Normal View History

2019-07-02 16:29:52 +08:00
// cover some element-ui styles
.el-breadcrumb__inner,
.el-breadcrumb__inner a {
font-weight: 400 !important;
}
.el-upload {
input[type="file"] {
display: none !important;
}
}
.el-upload__input {
display: none;
}
// to fixed https://github.com/ElemeFE/element/issues/2461
.el-dialog {
transform: none;
left: 0;
position: relative;
margin: 0 auto;
}
// refine element ui upload
.upload-container {
.el-upload {
width: 100%;
.el-upload-dragger {
width: 100%;
height: 200px;
}
}
}
// dropdown
.el-dropdown-menu {
a {
display: block
}
}
2019-07-25 10:30:30 +08:00
.el-popover {
min-width: 50px;
}
.el-scrollbar {
height: 100%;
}
.el-card__header {
padding: 14px 20px;
}
.el-card__body {
padding: 0px;
}
2019-07-30 13:29:54 +08:00
.el-radio{
margin-right: 0;
}