Skip to content

Commit

Permalink
💄 修复特定情况下y轴溢出
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Apr 23, 2024
1 parent 0b8fa6d commit 11bf4fe
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/home/t-pool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ onUnmounted(() => {
}
.pool-icon {
max-width: 60px;
max-height: 60px;
width: 60px;
height: 60px;
transition: all ease-in-out 0.3s;
}
Expand All @@ -331,9 +331,10 @@ onUnmounted(() => {
}
.pool-icon img {
width: 100%;
height: 100%;
border-radius: 8px;
position: absolute;
width: 60px;
height: 60px;
border-radius: 5px;
cursor: pointer;
}
Expand Down

0 comments on commit 11bf4fe

Please sign in to comment.