mirror of https://github.com/status-im/consul.git
22 lines
406 B
SCSS
22 lines
406 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
%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);
|
|
}
|
|
|