feat: optimizaciones responsive en AdminPanel y traducciones i18n en BusinessDetailsView
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user