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.
16 lines
333 B
SCSS
16 lines
333 B
SCSS
6 months ago
|
// 标题背景
|
||
|
.bg_title {
|
||
|
background-size: contain;
|
||
|
background-repeat: no-repeat;
|
||
|
height: 14px;
|
||
|
margin-left: 8px;
|
||
|
}
|
||
|
// 标题图
|
||
|
@for $i from 0 through 6 {
|
||
|
// 生成动态类名
|
||
|
.bg_title_#{$i} {
|
||
|
// 动态设置背景图片,引用对应的图标
|
||
|
background-image: url("@/assets/header/title#{$i}.png");
|
||
|
}
|
||
|
}
|