feat(SW-184): implementing mobile design

This commit is contained in:
Erik Tiekstra
2024-08-21 14:38:29 +02:00
parent b51a4c46e8
commit a2e2cf575e
44 changed files with 526 additions and 111 deletions

View File

@@ -0,0 +1,6 @@
.topLink {
display: flex;
align-items: center;
gap: var(--Spacing-x1);
font-size: var(--typography-Caption-Regular-fontSize);
}

View File

@@ -0,0 +1,13 @@
import Link from "@/components/TempDesignSystem/Link"
import styles from "./headerLink.module.css"
import { HeaderLinkProps } from "@/types/components/header/headerLink"
export default function HeaderLink({ children, ...props }: HeaderLinkProps) {
return (
<Link color="burgundy" className={styles.topLink} {...props}>
{children}
</Link>
)
}