chore: split out styles + only load where needed
This commit is contained in:
parent
f21e8b18ae
commit
67fcfdb051
26 changed files with 539 additions and 454 deletions
26
src/assets/styles/widgets/paginator.css
Normal file
26
src/assets/styles/widgets/paginator.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
.pagination {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.pagination button {
|
||||
background: none;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pagination button > svg {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.pagination button.disabled > svg {
|
||||
opacity: .5;
|
||||
cursor: not-allowed;
|
||||
stroke: var(--black);
|
||||
stroke-width: var(--stroke-width-default);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.pagination button.disabled > svg {
|
||||
stroke: var(--white);
|
||||
}
|
||||
}
|
Reference in a new issue