36 lines
517 B
CSS
36 lines
517 B
CSS
.inventory-card h3 {
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.inventory-item {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.inventory-item span {
|
|
display: block;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.inventory-item small {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.inventory-item .bar {
|
|
height: 8px;
|
|
background: #F1F5F9;
|
|
border-radius: 99px;
|
|
margin-top: 0.25rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.inventory-item .fill {
|
|
height: 100%;
|
|
background: #10B981;
|
|
}
|
|
|
|
.text-urgent {
|
|
color: #EF4444;
|
|
}
|