我不来这里什么?
您需要重新排列包含SVG的Divs(.sc-dVBluf .fgjuVP
button
.DLsnt {
border: 1px solid black;
border-radius: 10px;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
max-width: 33%;
position: relative;
min-width: 30%;
height: 20%;
}
.cTlyjm {
display: flex;
justify-content: space-between;
height: 100vh;
}
.fgjuVP {
height: 100%;
width: 24px; /*change here*/
position: relative; /*change here, too*/
animation: snowFlake 2s ease-in-out infinite;
left: calc(-16.5%); /*the half of the max-width of the .DLsnt button*/
}
@keyframes snowFlake {
0% {
transform: translate(0%);
}
50% {
transform: translate(0, 50%);
}
100% {
transform: translate(0, 100%);
}
}