Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const Header = ({ handleNavClick, showNavMobile }: IHeaderProps) => {
<>
<header>
<div className={styles.topBanner}>
<Link href="/">Accessible Web Dev</Link>
<Link href="/">AWD</Link>
<div className={styles.buttonsContainer}>
<ThemeSwitcher />
<button
Expand Down
2 changes: 1 addition & 1 deletion components/SkipLink/SkipLink.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
padding: 0.3rem;
border: 1px solid var(--primary);
z-index: 100;
transform: translateY(-100px);
transform: translateY(-500px);
transition: all .4s ease-in-out;
}

Expand Down
6 changes: 6 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
--headerHeight: 3rem;
}

@supports (font: -apple-system-body) {
html {
font: -apple-system-body;
}
}

html,
body {
padding: 0;
Expand Down
Loading