Meu menu.svg aparece cortado. To quebrando a cabeça tentando resolver isso...
-
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, inicial-scale=1.0">
<title>AluraBooks</title>
<link rel="stylesheet" href="/reset.css">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<header class="cabecalho">
<span class="cabecalho___menu-hamburguer"></span>
<img src="img/Logo.svg" alt="logo da alurabooks">
<a href="#"><img src="img/Favoritos.svg" alt="meus favoritos"></a>
<a href="#"><img src="/img/Compras.svg" alt="carrinho de compras"></a>
<a href="#"><img src="/img/Usuario.svg" alt="meu perfil"></a>
</header>
</body>
</html>
@import url("/styles/header.css");
:root {
--cor-de-fundo: #EBECEE;
}
body {
background-color: var(--cor-de-fundo);
}
.cabecalho___menu-hamburguer {
width: 24px;
height: 24px;
background-image: url("../img/Menu.svg");
display: inline-block;
}