feat(WEB-249): first iteration design system primitives (typography, grid)
This commit is contained in:
18
components/TempDesignSystem/Grid/grid.module.css
Normal file
18
components/TempDesignSystem/Grid/grid.module.css
Normal file
@@ -0,0 +1,18 @@
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: var(--Spacing-x2);
|
||||
grid-auto-flow: dense;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.grid {
|
||||
grid-template-columns: repeat(8, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1367px) {
|
||||
.grid {
|
||||
grid-template-columns: repeat(12, 1fr);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user