You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
682 B
SCSS

@import url('./fonts.scss');
@import url('./element-plus.scss');
// 标题背景
.bg_title {
background-size: contain;
background-repeat: no-repeat;
height: 14px;
margin-left: 8px;
}
// 标题图
@for $i from 0 through 8 {
// 生成动态类名
.bg_title_#{$i} {
// 动态设置背景图片,引用对应的图标
background-image: url("@/assets/header/title#{$i}.png");
}
}
.bg_basic_content{
background: linear-gradient( 180deg, rgba(7,16,19,0) 0%, #081417 100%);;
}
.bg_error_picture {
width: 100%;
height: 100%;
background: url("@/assets/common/load_file_error.png") no-repeat center center;
background-size: 50%;
border: 1px dashed red;
}