This commit is contained in:
杨鹏
2025-10-17 23:29:12 +08:00
parent 20ac8938a9
commit 1df0c924ec
2 changed files with 32 additions and 2 deletions
+16 -1
View File
@@ -205,7 +205,8 @@
flex-direction: column;
background-color: #fff;
// box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
border-top: 1px solid rgba(119, 119, 119, 0.25);
// border-top: 1px solid rgba(119, 119, 119, 0.25);
position: relative;
&__item-wrapper {
height: 50px;
@@ -213,6 +214,20 @@
justify-content: space-around;
align-items: center;
}
&::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
border-top: 1px solid rgba(119, 119, 119, 0.25);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
box-sizing: border-box;
}
}
.mid-tabbar {