REFACTOR: Corrigindo header para telas grandes.

This commit is contained in:
tulioperdigao 2025-10-16 09:53:51 -03:00
parent ebc7de9087
commit 04080fbd21
2 changed files with 25 additions and 13 deletions

View File

@ -10,11 +10,13 @@
</head>
<body class="p-4">
<div class="header__container">
<div class="header-title__container">
<h1 class="mb-4">Validação de Viabilidade</h1>
</div>
<div class="header-logo__container">
<img src="./assets/logo_login-sothis.png" alt="Logo Branco Sothis" width="120">
<div class="header-content">
<div class="header-title__container">
<h1 class="mb-4">Validação de Viabilidade</h1>
</div>
<div class="header-logo__container">
<img src="./assets/logo_login-sothis.png" alt="Logo Branco Sothis" width="120">
</div>
</div>
</div>

View File

@ -1,14 +1,21 @@
@charset "UTF-8";
.header__container {
background-color: #234164;
width: 100%;
margin-bottom: 50px;
display: flex;
justify-content: center;
padding: 1rem 12px;
}
.header-content {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #234164;
width: 100%;
padding: 20px 125px 25px 125px;
margin-bottom: 50px;
padding-left: 10px;
padding-right: 10px;
}
.header-title__container > h1 {
@ -192,8 +199,11 @@ label {
.card-content {
height: fit-content;
}
}
.header__container {
padding-left: 115px;
@media screen and (min-width: 1200px) {
.header-content {
max-width: 1320px;
}
}
}