17 lines
199 B
SCSS
17 lines
199 B
SCSS
![]() |
.cl-sticky {
|
||
|
position: -webkit-sticky;
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
z-index: 99;
|
||
|
width: 100%;
|
||
|
|
||
|
&.is-flex {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
&.is-white {
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
}
|