mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
31 lines
589 B
SCSS
31 lines
589 B
SCSS
|
.panel-group {
|
||
|
&__label {
|
||
|
max-height: 280px;
|
||
|
overflow-y: scroll;
|
||
|
position: relative;
|
||
|
|
||
|
&:before {
|
||
|
content: '';
|
||
|
position: sticky;
|
||
|
display: block;
|
||
|
z-index: 1;
|
||
|
top: -2px;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 17px;
|
||
|
background-image: linear-gradient(to bottom, #f9fafc, transparent);
|
||
|
}
|
||
|
|
||
|
&:after {
|
||
|
content: '';
|
||
|
position: sticky;
|
||
|
display: block;
|
||
|
bottom: -1px;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 17px;
|
||
|
background-image: linear-gradient(to bottom, transparent, #f9fafc);
|
||
|
}
|
||
|
}
|
||
|
}
|