feat(header): Adiciona cabeçallho desktop e mobile

This commit is contained in:
Sabrina Miranda 2022-10-12 22:26:11 -03:00
parent 007a16a5c3
commit b25983e1da
3 changed files with 45 additions and 2 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -8,4 +8,34 @@
a {
text-decoration: none;
}
}
/* HEADER */
.header-container {
display: flex;
width: 100%;
background: #000000;
padding: 29px 0;
justify-content: center;
align-items: center;
}
.logo-link {
width: 12%;
}
.logo {
width: 98%;
}
/* MOBILE */
@media (max-width: 1024px) {
.logo-link {
width: 55%;
}
.logo {
width: 99%;
}

View File

@ -17,6 +17,10 @@
</head>
<body>
<header class="header-container">
<a class="logo-link" href="/">
<img class="logo" src="./assets/images/logo-m3academy.svg" alt="Logo M3 Academy"/>
</a>
</header>
</body>
</html>