vue-recyclerview
Version:
Mastering Large Lists with the vue-recyclerview
28 lines (27 loc) • 480 B
CSS
.recyclerview-container {
position: relative;
}
.recyclerview-loading {
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
padding: 10px;
font-size: 14px;
color: #9E9E9E;
}
.recyclerview {
background: #fff;
margin: 0;
padding: 0;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
width: 100%;
height: 100%;
position: absolute;
box-sizing: border-box;
contain: layout;
will-change: transform;
}