Fix coloring of pagination buttons

This commit is contained in:
Christian Wolf 2022-08-18 16:35:03 +02:00
parent 3d7bc85a77
commit 3170dffa80
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
.btn-primary {
color: white;
background-color: var(--color-main-link);
border: none;
&:hover {
color: white;
background-color: var(--color-main-link);
}
}
.pagination {
a {
color: var(--color-main-link);
}
.page-item.active .page-link {
color: var(--color-fg-top);
background-color: var(--color-bg-top);
border: none;
}
}

View File

@ -1,2 +1,3 @@
@use 'core';
@use 'default-classes';
@use 'buttons';