39 lines
574 B
Plaintext
Raw Permalink Normal View History

2025-08-29 09:51:02 +08:00
.tab-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
2026-01-30 09:54:26 +08:00
height: 48px;
2025-08-29 09:51:02 +08:00
background: white;
display: flex;
2026-01-30 09:54:26 +08:00
padding-bottom: env(safe-area-inset-bottom);
2025-08-29 09:51:02 +08:00
}
.tab-bar-border {
2026-01-30 09:54:26 +08:00
background-color: rgba(0, 0, 0, 0.33);
2025-08-29 09:51:02 +08:00
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
transform: scaleY(0.5);
}
.tab-bar-item {
flex: 1;
text-align: center;
display: flex;
justify-content: center;
2026-01-30 09:54:26 +08:00
align-items: center;
flex-direction: column;
2025-08-29 09:51:02 +08:00
}
.tab-bar-item image {
2026-01-30 09:54:26 +08:00
width: 27px;
height: 27px;
2025-08-29 09:51:02 +08:00
}
.tab-bar-item view {
font-size: 10px;
}