28 lines
No EOL
601 B
CSS
28 lines
No EOL
601 B
CSS
/* Basic styling for FreightDesk frontend */
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Status badge colors override */
|
|
.badge.bg-success {
|
|
background-color: #28a745 !important;
|
|
}
|
|
.badge.bg-warning {
|
|
background-color: #ffc107 !important;
|
|
color: #212529 !important;
|
|
}
|
|
.badge.bg-danger {
|
|
background-color: #dc3545 !important;
|
|
}
|
|
.badge.bg-primary {
|
|
background-color: #0d6efd !important;
|
|
}
|
|
.badge.bg-secondary {
|
|
background-color: #6c757d !important;
|
|
} |