Skip to content

Commit 109cd66

Browse files
authored
Merge pull request #4 from topthithu/dev
Release v0.0.3
2 parents 0381e6a + 24d576a commit 109cd66

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/styles/index.module.scss

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -122,50 +122,50 @@ lg,
122122
xl;
123123

124124
@each $bp in $breakpoints {
125-
.container-#{bp} {
126-
.grid-auto-1\@#{bp} {
125+
.container-#{$bp} {
126+
.grid-auto-1\@#{$bp} {
127127
--col-min-width: 8rem;
128128
}
129129

130-
.grid-auto-2\@#{bp} {
130+
.grid-auto-2\@#{$bp} {
131131
--col-min-width: 10rem;
132132
}
133133

134-
.grid-auto-3\@#{bp} {
134+
.grid-auto-3\@#{$bp} {
135135
--col-min-width: 15rem;
136136
}
137137

138-
.grid-auto-4\@#{bp} {
138+
.grid-auto-4\@#{$bp} {
139139
--col-min-width: 20rem;
140140
}
141141

142-
.grid-auto-5\@#{bp} {
142+
.grid-auto-5\@#{$bp} {
143143
--col-min-width: 25rem;
144144
}
145145

146-
.grid-auto-cols\@#{bp} {
146+
.grid-auto-cols\@#{$bp} {
147147
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
148148
}
149149

150150
@for $i from 1 through $grid-columns {
151-
.col-#{$i}\@#{bp} {
151+
.col-#{$i}\@#{$bp} {
152152
grid-column-end: span #{$i};
153153
}
154154

155-
.col-start-#{$i}\@#{bp} {
155+
.col-start-#{$i}\@#{$bp} {
156156
grid-column-start: #{$i};
157157
}
158158

159-
.col-end-#{$i+1}\@#{bp} {
159+
.col-end-#{$i+1}\@#{$bp} {
160160
grid-column-end: #{$i+1};
161161
}
162162
}
163163

164-
.col-start-auto\@#{bp} {
164+
.col-start-auto\@#{$bp} {
165165
grid-column-start: auto;
166166
}
167167

168-
.col-end-auto\@#{bp} {
168+
.col-end-auto\@#{$bp} {
169169
grid-column-end: auto;
170170
}
171171
}

0 commit comments

Comments
 (0)