mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 22:15:09 +00:00
16 lines
No EOL
274 B
SCSS
16 lines
No EOL
274 B
SCSS
.warehouse-sku-card {
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
// Grid container for SKU cards
|
|
.warehouse-skus-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
|
|
@media (max-width: 768px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |