Should fix some padding issues, optimize theme editting, and a bit of other stuff that's hard to remember.
16 lines
613 B
CSS
16 lines
613 B
CSS
.fourchan-ss-navigation.index.pagination-sticky-top body::before,
|
|
.fourchan-ss-navigation.index.pagination-top body::before {
|
|
top: #{Style.padding.pages.offsetHeight}px;
|
|
}
|
|
.fourchan-ss-navigation.index.pagination-sticky-bottom body::before,
|
|
.fourchan-ss-navigation.index.pagination-bottom body::before {
|
|
bottom: #{Style.padding.pages.offsetHeight}px;
|
|
}
|
|
.index.pagination-sticky-top body,
|
|
.index.pagination-top body {
|
|
padding-top: #{Style.padding.pages.offsetHeight + 1}px;
|
|
}
|
|
.index.pagination-sticky-bottom body,
|
|
.index.pagination-bottom body {
|
|
padding-bottom: #{Style.padding.pages.offsetHeight + 1}px;
|
|
} |