scss替换为less

This commit is contained in:
2026-03-21 15:59:59 +08:00
parent 4578670432
commit c1cbb45b34
46 changed files with 1801 additions and 2623 deletions
@@ -0,0 +1,26 @@
/*
* 照片墙页面专用css
*/
// 瀑布流最外层
#photo-wall {
margin: 0 auto;
column-count: auto;
column-width: 240px;
column-gap: 20px;
// 每一列图片包含层
.item {
margin-bottom: 20px;
// 防止多列布局,分页媒体和多区域上下文中的意外中断
break-inside: avoid;
}
// 图片
.item-img {
width: 100%;
vertical-align: middle;
}
}
#load-tip {
color: @color9;
text-align: center;
display: none;
}