fix: 修复列表页浮动添加按钮被底部Tabbar遮挡的问题
将列表页浮动添加按钮的bottom值从24px调整为80px: - receivable/List.vue - expense/List.vue - requirement/List.vue Tabbar高度64px,添加按钮需要预留足够空间避免被遮挡
This commit is contained in:
parent
205af48cb6
commit
b5a954f008
@ -201,7 +201,7 @@ const handleSearch = () => {
|
||||
|
||||
.add-btn {
|
||||
position: fixed;
|
||||
bottom: 24px;
|
||||
bottom: 80px;
|
||||
right: 24px;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
|
||||
@ -261,7 +261,7 @@ onMounted(() => {
|
||||
|
||||
.add-btn {
|
||||
position: fixed;
|
||||
bottom: 24px;
|
||||
bottom: 80px;
|
||||
right: 24px;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
|
||||
@ -217,7 +217,7 @@ const handleSearch = () => {
|
||||
|
||||
.add-btn {
|
||||
position: fixed;
|
||||
bottom: 24px;
|
||||
bottom: 80px;
|
||||
right: 24px;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user