style(layout): 调整后退图标大小

- 在 index.vue 和 redirect.vue 文件中,将 .back-icon 类的宽度和高度从 18px 调整为 24px
-此修改统一了后退图标的尺寸,提高了用户界面的一致性
This commit is contained in:
陈昱达
2025-06-03 17:25:27 +08:00
parent 6a09aef7a7
commit a62039d851
2 changed files with 4 additions and 4 deletions

View File

@@ -86,8 +86,8 @@ function goBack() {
} }
.back-icon { .back-icon {
width: 18px; width: 24px;
height: 18px; height: 24px;
} }
} }
</style> </style>

View File

@@ -137,8 +137,8 @@ const handlePopState = () => {
} }
.back-icon { .back-icon {
width: 18px; width: 24px;
height: 18px; height: 24px;
} }
} }
</style> </style>