tqpulldownrefresh
Version:
26 lines • 409 B
CSS
/* .container {
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
margin: 0;
} */
.container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
width: 100vw;
height: 100vh;
}
.refresher {
width: 50px;
height: 50px;
background-color: white;
border-radius: 50%;
cursor: move;
}