fix: correções no logo, degradê e alertas

This commit is contained in:
andersonid
2025-04-02 15:02:20 -03:00
parent 1ff8e97bbc
commit e9c1f3aedf
3 changed files with 41 additions and 17 deletions

View File

@@ -28,6 +28,7 @@ body {
.navbar-brand {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.4rem;
font-weight: 600;
color: var(--text-light) !important;
@@ -38,18 +39,18 @@ body {
margin-right: 10px;
}
.navbar-logo {
.navbar-logo, .login-logo {
height: 35px;
width: auto;
margin-right: 10px;
display: block;
object-fit: contain;
max-width: 100%;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
.login-logo {
height: 100px;
width: auto;
display: block;
margin: 0 auto;
margin: 0 auto 1rem;
}
.nav-link {
@@ -123,6 +124,7 @@ body {
box-shadow: 0 0 0 0.2rem rgba(232, 0, 12, 0.25);
}
/* Alert styles */
.alert {
position: fixed;
top: 1rem;
@@ -132,23 +134,36 @@ body {
min-width: 300px;
max-width: 90%;
text-align: center;
backdrop-filter: blur(5px);
border: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 1rem;
}
.alert-info {
background-color: rgba(255,255,255,0.9);
color: var(--secondary-color);
}
.alert-danger {
background-color: var(--primary-color);
color: white;
.alert i {
font-size: 1.2rem;
}
.alert-success {
background-color: rgba(40, 167, 69, 0.9);
background-color: #28a745;
color: white;
}
.alert-danger {
background-color: #dc3545;
color: white;
}
.alert-warning {
background-color: #ffc107;
color: #333;
}
.alert-info {
background-color: #17a2b8;
color: white;
}