box sizing border box
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user