Skip to content

Commit 8eafe2e

Browse files
author
Pascal Alferink
committed
classes .fw-wrap and .fw-nowrap in utility.scss and classes .wrap and .nowrap in grid.scss
1 parent 67b69a7 commit 8eafe2e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

sass/base/utility.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@
176176
.dir-column-reverse { flex-direction: column-reverse; }
177177

178178
/* Grid wrapping */
179-
.wrap { flex-wrap: wrap; }
180-
.nowrap { flex-wrap: nowrap; }
179+
.fw-wrap { flex-wrap: wrap; }
180+
.fw-nowrap { flex-wrap: nowrap; }
181181

182182
/* Alignment */
183183

sass/layout/grid.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
display: block;
5959
}
6060

61+
/* Grid wrapping */
62+
&.wrap { flex-wrap: wrap; }
63+
&.nowrap { flex-wrap: nowrap; }
64+
6165
/* Grid items
6266
Every direct child within .g is a grid item
6367
Used to be .gi, the new method is less susceptible to errors

0 commit comments

Comments
 (0)