mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
121bd2e0ab
* ui: PagedCollection component * ui: Use PagedCollection (#12436) * ui: Integrate PagedCollection into DisclosureMenu * Integrate PageCollection into DC, Nspace and Partition menus
17 lines
327 B
SCSS
17 lines
327 B
SCSS
%paged-collection-scroll {
|
|
overflow-y: auto !important;
|
|
will-change: scrollPosition;
|
|
}
|
|
.paged-collection-scroll {
|
|
@extend %paged-collection-scroll;
|
|
}
|
|
[style*="--paged-row-height"] {
|
|
@extend %paged-collection-scroll;
|
|
}
|
|
[style*="--paged-start"]::before {
|
|
content: '';
|
|
display: block;
|
|
height: var(--paged-start);
|
|
}
|
|
|