box sizing border box
This commit is contained in:
@@ -9,7 +9,10 @@ const Navigation = () => {
|
||||
return (
|
||||
<>
|
||||
<div className={styles.nav}>
|
||||
<GractwoLogo className={`${styles.logo} ${styles.desktop}`} />
|
||||
<GractwoLogo
|
||||
width={96}
|
||||
className={`${styles.logo} ${styles.desktop}`}
|
||||
/>
|
||||
{navigation.map((navlink) => {
|
||||
return (
|
||||
<Link
|
||||
|
||||
@@ -19,12 +19,18 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
background-color: var(--black0);
|
||||
color: var(--color);
|
||||
min-height: 100vh;
|
||||
font-family: var(--fonts-norm);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.footer {
|
||||
justify-self: end;
|
||||
}
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
|
||||
Reference in New Issue
Block a user