style(ActivityDetailPage): 将底部价格容器的对齐方式从 items-end 改为 items-center
将底部价格容器的对齐方式从 items-end 改为 items-center,以改善视觉一致性和布局美观性。
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -419,7 +419,7 @@ const RightContent = defineComponent({ | ... | @@ -419,7 +419,7 @@ const RightContent = defineComponent({ |
| 419 | <div | 419 | <div |
| 420 | class="fixed bottom-16 left-0 right-0 bg-white p-3 shadow-lg flex justify-between items-center" | 420 | class="fixed bottom-16 left-0 right-0 bg-white p-3 shadow-lg flex justify-between items-center" |
| 421 | > | 421 | > |
| 422 | - <div class="flex items-end"> | 422 | + <div class="flex items-center"> |
| 423 | <div class="text-red-500 text-lg font-bold">¥366</div> | 423 | <div class="text-red-500 text-lg font-bold">¥366</div> |
| 424 | <div class="text-xs text-gray-500 ml-1 line-through">原价¥468</div> | 424 | <div class="text-xs text-gray-500 ml-1 line-through">原价¥468</div> |
| 425 | </div> | 425 | </div> | ... | ... |
-
Please register or login to post a comment