feat: optimizaciones responsive en AdminPanel y traducciones i18n en BusinessDetailsView

This commit is contained in:
2026-03-05 09:27:36 -05:00
parent 1488af32ae
commit 4cdd903b8a
5 changed files with 80 additions and 18 deletions

View File

@ -177,6 +177,34 @@ const handleLogout = () => {
gap: 12px;
}
.admin-badge, .driver-badge {
padding: 4px 8px;
border-radius: 6px;
font-size: 10px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
white-space: nowrap;
}
.admin-badge {
background: rgba(254, 231, 21, 0.15);
color: var(--active-color);
border: 1px solid rgba(254, 231, 21, 0.3);
}
.driver-badge {
background: rgba(74, 222, 128, 0.15);
color: #4ade80;
border: 1px solid rgba(74, 222, 128, 0.3);
}
@media (max-width: 600px) {
.admin-badge, .driver-badge {
display: none;
}
}
.header-title {
font-size: 24px;
font-weight: 800;