Files
2017-04-24 17:52:05 -04:00

20 lines
282 B
CSS

.stickyContainer {
position: relative !important;
}
.sticky {
width: 100%;
}
.stickyActive:not(.stickyAtBottom) {
position: fixed !important;
top: 64px !important;
}
.stickyAtBottom {
position: absolute !important;
top: auto !important;
bottom: 30px !important;
}