diff options
| author | seth <[email protected]> | 2024-02-13 00:06:52 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-13 00:24:08 -0500 |
| commit | ca18dc7cc8b49d0aa703d5382a445668619e8e49 (patch) | |
| tree | f4c922051adddf8211a634068c952958ae58c5ac /src | |
| parent | 2cbc22348ef038181e1dc89635a3be005604a4ca (diff) | |
fix navbar spacing
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Head.astro | 8 | ||||
| -rw-r--r-- | src/components/Nav.astro | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/components/Head.astro b/src/components/Head.astro index f2f7835..f05e862 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -20,4 +20,12 @@ const { title, description } = Astro.props; h1 { @apply text-3xl md:text-4xl; } + + h2 { + @apply text-2xl md:text-3xl; + } + + h3 { + @apply text-xl md:text-2xl; + } </style> diff --git a/src/components/Nav.astro b/src/components/Nav.astro index c08662d..378c804 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -20,7 +20,7 @@ const links: NavLink[] = [ --- <nav class="space-y-5 text-xl my-5"> - <p> + <p class="space-x-2"> {links.map(({ name, url }) => <a href={url}>{name}</a>)} </p> |
