chore: improve now-playing loading
This commit is contained in:
parent
45bcc0a89b
commit
4fff4ff124
6 changed files with 64 additions and 25 deletions
|
@ -21,6 +21,10 @@
|
|||
font-size: var(--font-size-base) !important;
|
||||
}
|
||||
|
||||
.pagefind-ui__result-excerpt {
|
||||
word-break: break-word !important;
|
||||
}
|
||||
|
||||
.pagefind-ui__form:before {
|
||||
opacity: 1 !important;
|
||||
top: calc(19px * var(--pagefind-ui-scale)) !important;
|
||||
|
@ -96,4 +100,4 @@
|
|||
.pagefind-ui__button:focus {
|
||||
color: var(--color-lightest) !important;
|
||||
background-color: var(--accent-color-hover) !important;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -463,6 +463,17 @@ li {
|
|||
text-align: center !important;
|
||||
}
|
||||
|
||||
.text--blurred {
|
||||
color: transparent;
|
||||
text-shadow: 0 0 6px var(--text-color);
|
||||
}
|
||||
|
||||
.fade {
|
||||
transition-property: opacity;
|
||||
transition-timing-function: var(--transition-ease-in-out);
|
||||
transition-duration: var(--transition-duration-default);
|
||||
}
|
||||
|
||||
.flex--centered {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
Reference in a new issue