Add proper pagination

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-11-25 22:44:47 +01:00
parent a935052987
commit dffbe447d6
4 changed files with 72 additions and 3 deletions
+9
View File
@@ -47,6 +47,15 @@ $theme-button-background: hsl($theme-hue, 100%, 30.0%);
$theme-button-background-active: hsl($theme-hue, 100%, 50%);
$theme-button-color: hsl($theme-hue, 0%, 100%);
$theme-button-color-active: hsl($theme-hue, 100%, 100%);
$theme-pagination-background: hsl($theme-hue, 50%, 10%);
$theme-pagination-background-active: hsl($theme-hue, 100%, 50%);
$theme-pagination-background-selected: hsl($theme-hue, 100%, 33%);
$theme-pagination-shadow: 0px 3px 6px 1px hsla(0, 0, 0, 0.75);
$theme-pagination-shadow-active: 0px 3px 6px 1px hsla(0, 0, 0, 0.75);
$theme-pagination-shadow-selected: 0px 3px 6px 1px hsla(0, 0, 0, 0.75);
$theme-pagination-color: $theme-content-color;
$theme-pagination-color-active: hsl($theme-hue, 100%, 100%);
$theme-pagination-color-selected: hsl($theme-hue, 100%, 50%);
* {
box-sizing: border-box;