styleguide: move scripts, add mobile navigation, style generator
All checks were successful
/ build (push) Successful in 9s
All checks were successful
/ build (push) Successful in 9s
This commit is contained in:
parent
4ebc78ae1f
commit
fa75654b11
16 changed files with 390 additions and 112 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue