mirror of
https://github.com/tabler/tabler.git
synced 2025-12-23 10:24:24 +04:00
21 lines
367 B
SCSS
21 lines
367 B
SCSS
.container {
|
|
@include make-container-breakpoints();
|
|
}
|
|
|
|
@each $name, $value in (0: 0, xs: .25rem, sm: .5rem, lg: 1rem, xl: 1.5rem) {
|
|
.row-#{$name} {
|
|
margin-right: (-$value);
|
|
margin-left: -($value);
|
|
|
|
> .col,
|
|
> [class*="col-"] {
|
|
padding-right: $value;
|
|
padding-left: $value;
|
|
}
|
|
|
|
.card {
|
|
margin-bottom: 2 * $value;
|
|
}
|
|
}
|
|
}
|