* Migrate to plain CSS (remove CSS modules) Change `prefixer` to a function instead of a proxy * Switch prefix to `nc` * Replace prefixer with literal class names * Remove prefixer * Fix migration errors * fix compose migrations * Remove unnecessary theme imports * Remove old CSS import * fix sticky toolbar positioning * update to cssnano v4 so preset is used * fix css pseudo selectors * update lockfile
19 lines
331 B
CSS
19 lines
331 B
CSS
.nc-sticky-stickyContainer {
|
|
position: relative !important;
|
|
}
|
|
|
|
.nc-sticky-sticky {
|
|
width: 100%;
|
|
}
|
|
|
|
.nc-sticky-stickyActive:not(.nc-sticky-stickyAtBottom) {
|
|
position: fixed !important;
|
|
top: 54px !important;
|
|
}
|
|
|
|
.nc-sticky-stickyAtBottom {
|
|
position: absolute !important;
|
|
top: auto !important;
|
|
bottom: 30px !important;
|
|
}
|