styleguide: move scripts, add mobile navigation, style generator
All checks were successful
/ build (push) Successful in 9s

This commit is contained in:
kritzl 2025-02-14 23:06:36 +01:00
commit fa75654b11
Signed by: kritzl
SSH key fingerprint: SHA256:5BmINP9VjZWaUk5Z+2CTut1KFhwLtd0ZynMekKbtViM
16 changed files with 390 additions and 112 deletions

View file

@ -4,6 +4,9 @@ $breakpoint-lg: 64rem;
$breakpoint-xl: 80rem;
$breakpoint-2xl: 96rem;
$breakpoint-mobile: $breakpoint-md;
$mobile-navigation-height: 4rem;
:root {
--color-neutral-50: #F2F0F5;
--color-neutral-100: #D1C6E0;
@ -292,7 +295,7 @@ h6,
{
font-family: "Argon Glow", ui-sans, sans-serif;
font-weight: 400;
margin: 0;
margin: 1rem 0;
}
@ -374,9 +377,13 @@ table {
thead {
position: sticky;
top: 0;
top: $mobile-navigation-height;
z-index: 10;
@media (min-width: $breakpoint-mobile) {
top: 0;
}
tr > th {
outline-width: 0.1em;
outline-style: solid;