refactor: 迁移ul-group-title-2

This commit is contained in:
augushong
2025-08-28 12:33:07 +08:00
parent 7f835db5f8
commit d110740b7d
8 changed files with 71 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
title=ul-group-title-2
padding=0
margin=0
gray=0
mobile=0
inner_margin=0

View File

@@ -0,0 +1,6 @@
<div class="ul-group-title-2">
销售
</div>
<div class="ul-group-title-2">
设计
</div>

View File

@@ -0,0 +1,5 @@
<?php
return [
];

View File

@@ -0,0 +1,26 @@
.ul-group-title-2 {
background: #d2dbe0;
width: 84px;
height: 28px;
line-height: 28px;
font-size: 14px;
font-weight: bold;
text-align: center;
position: relative;
margin-top: 30px;
margin-bottom: 14px;
color: #666666;
}
.ul-group-title-2::after {
content: "";
width: 0;
height: 0;
position: absolute;
border-top: 14px solid transparent;
border-bottom: 14px solid transparent;
border-left: 15px solid #d2dbe0;
right: -15px;
top: 0px;
}