improve footer accessibility + fix search font
This commit is contained in:
parent
74a18e301d
commit
f5edced908
|
@ -12,10 +12,10 @@ import gitLogo from "@icons/git-logo.svg?raw";
|
||||||
</a>
|
</a>
|
||||||
</section>
|
</section>
|
||||||
<section class="socials">
|
<section class="socials">
|
||||||
<a href="https://matrix.to/#/#quickshell:outfoxxed.me" target="_blank">
|
<a href="https://matrix.to/#/#quickshell:outfoxxed.me" target="_blank" aria-label="Join our matrix space">
|
||||||
<Fragment set:html={matrixLogo}/>
|
<Fragment set:html={matrixLogo}/>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://git.outfoxxed.me/outfoxxed/quickshell" target="_blank">
|
<a href="https://git.outfoxxed.me/outfoxxed/quickshell" target="_blank" aria-label="Visit our git server">
|
||||||
<Fragment set:html={gitLogo}/>
|
<Fragment set:html={gitLogo}/>
|
||||||
</a>
|
</a>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -380,7 +380,6 @@ button[data-close-modal] {
|
||||||
#qs_search {
|
#qs_search {
|
||||||
--pagefind-ui-primary: hsla(var(--accent-400));
|
--pagefind-ui-primary: hsla(var(--accent-400));
|
||||||
--pagefind-ui-text: hsla(0 0 60);
|
--pagefind-ui-text: hsla(0 0 60);
|
||||||
--pagefind-ui-font: Rubik;
|
|
||||||
--pagefind-ui-background: hsl(var(--blue) 10 15);
|
--pagefind-ui-background: hsl(var(--blue) 10 15);
|
||||||
--pagefind-ui-border: hsl(var(--blue) 30 25);
|
--pagefind-ui-border: hsl(var(--blue) 30 25);
|
||||||
--pagefind-ui-border-width: 1px;
|
--pagefind-ui-border-width: 1px;
|
||||||
|
|
|
@ -185,7 +185,7 @@ footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 0.127rem;
|
gap: 0.2rem;
|
||||||
color: hsl(var(--text-dark));
|
color: hsl(var(--text-dark));
|
||||||
|
|
||||||
& > p {
|
& > p {
|
||||||
|
@ -214,6 +214,12 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media not (min-width: 40rem) {
|
||||||
|
footer .credits > a {
|
||||||
|
padding: 0.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (min-width: 40rem) {
|
@media (min-width: 40rem) {
|
||||||
html {
|
html {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
|
Loading…
Reference in a new issue