Merge pull request 'feature/header' (#1) from feature/header into main

Reviewed-on: #1
This commit is contained in:
Luiz Felipe Silva 2022-10-13 17:11:12 +00:00
commit 7bdfb01607
2 changed files with 25 additions and 1 deletions

View File

@ -11,6 +11,10 @@
</head>
<body>
<header>
<a href="/">
<img src="./src/assets/svg/logo.svg" alt="M3 Academy">
</a>
</header>
</body>
</html>

View File

@ -0,0 +1,20 @@
/* GLOBAL */
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* HEADER */
header {
width: 100%;
height: 101px;
background-color: #000;
display: grid;
place-content: center;
}
header a {
width: 11%;
}