button shenanigans, download selector almost done

This commit is contained in:
af-n
2022-07-20 20:22:57 -04:00
parent 68ef930163
commit 3105d5844c
8 changed files with 79 additions and 61 deletions

View File

@@ -68,6 +68,7 @@ import Wave from '$lib/components/atoms/Wave.svelte';
--grey-four: #1B1E29;
--grey-five: #D0D0D0;
--grey-six: #a19e9e;
--grey-seven: #535563;
}
:global(::selection) {
@@ -88,6 +89,24 @@ import Wave from '$lib/components/atoms/Wave.svelte';
font-size: 1.85rem;
}
:global(h3) {
color: var(--white);
font-weight: 600;
font-size: 1rem;
}
:global(h4) {
color:var(--grey-six);
font-weight:500;
font-size: 1rem;
}
:global(h5) {
color:var(--white);
font-weight: 300;
font-size: 1rem;
}
/*-----scrollbar-----*/
:global(::-webkit-scrollbar) {
@@ -103,6 +122,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
}
:global(::-webkit-scrollbar-thumb:hover) {
background-color: var(--grey-four);
background-color: var(--grey-seven);
}
</style>