💄 修复特定情况下y轴溢出

This commit is contained in:
目棃
2024-04-24 01:01:59 +08:00
parent 0b8fa6d8f6
commit 11bf4fea9b

View File

@@ -320,8 +320,8 @@ onUnmounted(() => {
} }
.pool-icon { .pool-icon {
max-width: 60px; width: 60px;
max-height: 60px; height: 60px;
transition: all ease-in-out 0.3s; transition: all ease-in-out 0.3s;
} }
@@ -331,9 +331,10 @@ onUnmounted(() => {
} }
.pool-icon img { .pool-icon img {
width: 100%; position: absolute;
height: 100%; width: 60px;
border-radius: 8px; height: 60px;
border-radius: 5px;
cursor: pointer; cursor: pointer;
} }