捕梦者基础前端框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

63 lines
1.1 KiB

/** 如果需要自己定义一些全局样式写在这里 */
$--ele-font-path: "~ele-admin/packages/style/fonts";
@import "./var.scss";
@import "~ele-admin/packages/style/index.scss";
/* 异常页面 */
.ele-exception {
margin: 145px 0;
.ele-exception-img,
.ele-exception-content {
margin: 15px 30px;
display: inline-block;
vertical-align: middle;
}
.ele-exception-content > h1 {
font-size: 72px;
font-weight: 600;
margin: 0 0 20px 0;
}
&:not(.ele-exception-dark) .ele-exception-content > h1 {
color: #515A6E;
}
.ele-exception-content > p {
font-size: 20px;
margin: 0 0 25px 0;
}
&:not(.ele-exception-dark) .ele-exception-content > p {
color: #808695;
}
&.ele-exception-dark .ele-exception-img {
opacity: .7;
}
}
@media screen and (max-width: 768px) {
.ele-exception {
margin: 40px 0;
.ele-exception-img {
margin: 0;
img {
max-height: 200px;
}
}
.ele-exception-content {
text-align: center;
}
}
}
//表格不对齐bug
.el-table th.gutter {
display: table-cell !important;
}