23 lines
399 B
SCSS
23 lines
399 B
SCSS
/* Grid */
|
|
|
|
@include grid(3rem);
|
|
|
|
@include breakpoint('<=xlarge') {
|
|
@include grid(3rem, 'xlarge');
|
|
}
|
|
|
|
@include breakpoint('<=large') {
|
|
@include grid(1.5rem, 'large');
|
|
}
|
|
|
|
@include breakpoint('<=medium') {
|
|
@include grid(1.5rem, 'medium');
|
|
}
|
|
|
|
@include breakpoint('<=small') {
|
|
@include grid(1.25rem, 'small');
|
|
}
|
|
|
|
@include breakpoint('<=xsmall') {
|
|
@include grid(1.25rem, 'xsmall');
|
|
} |