box sizing border box

This commit is contained in:
2022-12-11 16:01:29 +01:00
parent cd602201cb
commit 9c41eaf4eb
2 changed files with 10 additions and 1 deletions

View File

@@ -9,7 +9,10 @@ const Navigation = () => {
return ( return (
<> <>
<div className={styles.nav}> <div className={styles.nav}>
<GractwoLogo className={`${styles.logo} ${styles.desktop}`} /> <GractwoLogo
width={96}
className={`${styles.logo} ${styles.desktop}`}
/>
{navigation.map((navlink) => { {navigation.map((navlink) => {
return ( return (
<Link <Link

View File

@@ -19,12 +19,18 @@
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box;
} }
body { body {
background-color: var(--black0); background-color: var(--black0);
color: var(--color); color: var(--color);
min-height: 100vh; min-height: 100vh;
font-family: var(--fonts-norm); font-family: var(--fonts-norm);
display: flex;
flex-direction: column;
.footer {
justify-self: end;
}
} }
h1, h1,
h2, h2,