fix: 修复right-name宽度溢出(box-sizing+flex:1)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2026-03-22 12:22:22 +08:00
parent 87fd63d89c
commit e873653c45

View File

@@ -21,12 +21,14 @@
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
box-sizing: border-box;
} }
.right-name { .right-name {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
width: 100%; flex: 1;
min-width: 0;
} }
.name-text { .name-text {
font-size: 0.22rem; font-size: 0.22rem;