From ebaf63d541358117cbd8bcccfbc02f4aa0d18864 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Fri, 3 Mar 2023 01:05:19 +0900 Subject: [PATCH] =?UTF-8?q?feat:=2010=EB=8B=A8=EC=9C=84=20column=20?= =?UTF-8?q?=EB=B6=84=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/scss/common/break_500px.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hwe/scss/common/break_500px.scss b/hwe/scss/common/break_500px.scss index 7f85be0a..3df2ad52 100644 --- a/hwe/scss/common/break_500px.scss +++ b/hwe/scss/common/break_500px.scss @@ -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{