@enact/moonstone
Version:
Large-screen/TV support library for Enact, containing a variety of UI components.
24 lines (23 loc) • 381 B
CSS
.virtualList {
position: relative;
height: 100%;
width: 100%;
overflow: hidden;
}
.virtualList.vertical {
overflow-y: scroll;
}
.virtualList.horizontal {
overflow-x: scroll;
}
.virtualList .listItem {
overflow: hidden;
width: 100%;
will-change: transform;
}
.virtualList .content {
will-change: transform;
}
.virtualList::-webkit-scrollbar {
display: none;
}