feat: 10단위 column 분리

This commit is contained in:
2023-03-09 02:17:00 +09:00
parent 0e92973a05
commit ebaf63d541
+15
View File
@@ -1,3 +1,6 @@
@import "bootstrap/scss/vendor/rfs";
@import 'bootstrap/scss/mixins/grid';
$container-max-widths: (
md: 500px,
lg: 1020px,
@@ -14,10 +17,22 @@ $grid-breakpoints: (
xxl: 1400px
);
@for $i from 1 through 10 {
.col10-#{$i} {
@include make-col($i, 10);
}
}
@mixin media-1000px{
@media (min-width: map-get($grid-breakpoints, 'md')) {
@content;
}
@for $i from 1 through 10 {
.col10d-#{$i} {
@include make-col($i, 10);
}
}
}
@mixin media-500px{