Skip to content

Commit

Permalink
🔧 chore(layout.scss): Re-add deleted selector for space char with col-
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderpig86 committed Apr 21, 2024
1 parent b801c08 commit 246051b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
4 changes: 3 additions & 1 deletion next/dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -2336,6 +2336,7 @@ section {
}

.row [class^=col-],
.row [class*=" col-"],
.row [class*=":col-"] {
width: 100%;
margin-left: 0;
Expand Down Expand Up @@ -2744,7 +2745,7 @@ section {
margin-left: 100% !important;
}
}
.row.no-space [class^=col-], .row.no-space [class*=":col-"] {
.row.no-space [class^=col-], .row.no-space [class*=" col-"], .row.no-space [class*=":col-"] {
padding: 0;
}

Expand Down Expand Up @@ -4705,6 +4706,7 @@ section {
}
/* Dividers for mobile layout */
.divided > .row [class^=col-],
.divided > .row [class*=" col-"],
.divided > .row [class*=":col-"] {
box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
}
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus-all.min.css

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion next/dist/cirrus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -2163,6 +2163,7 @@ section {
}

.row [class^=col-],
.row [class*=" col-"],
.row [class*=":col-"] {
width: 100%;
margin-left: 0;
Expand Down Expand Up @@ -2571,7 +2572,7 @@ section {
margin-left: 100% !important;
}
}
.row.no-space [class^=col-], .row.no-space [class*=":col-"] {
.row.no-space [class^=col-], .row.no-space [class*=" col-"], .row.no-space [class*=":col-"] {
padding: 0;
}

Expand Down Expand Up @@ -3804,6 +3805,7 @@ section {
}
/* Dividers for mobile layout */
.divided > .row [class^=col-],
.divided > .row [class*=" col-"],
.divided > .row [class*=":col-"] {
box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
}
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus-core.min.css

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion next/dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -2164,6 +2164,7 @@ section {
}

.row [class^=col-],
.row [class*=" col-"],
.row [class*=":col-"] {
width: 100%;
margin-left: 0;
Expand Down Expand Up @@ -2572,7 +2573,7 @@ section {
margin-left: 100% !important;
}
}
.row.no-space [class^=col-], .row.no-space [class*=":col-"] {
.row.no-space [class^=col-], .row.no-space [class*=" col-"], .row.no-space [class*=":col-"] {
padding: 0;
}

Expand Down Expand Up @@ -3805,6 +3806,7 @@ section {
}
/* Dividers for mobile layout */
.divided > .row [class^=col-],
.divided > .row [class*=" col-"],
.divided > .row [class*=":col-"] {
box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
}
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus.min.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions next/src/base/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ section {

/* Base sizing where everything is 100% width */
[class^='col-'],
[class*=' col-'],
[class*='\:col-'] {
width: 100%;
margin-left: 0;
Expand Down Expand Up @@ -239,6 +240,7 @@ section {
/* Columns without the spacing */
// TODO: Deprecate 0.8.0, use p-0 instead
&.no-space [class^='col-'],
&.no-space [class*=' col-'],
&.no-space [class*='\:col-'] {
padding: 0;
}
Expand Down Expand Up @@ -351,6 +353,7 @@ section {

/* Dividers for mobile layout */
.divided > .row [class^='col-'],
.divided > .row [class*=' col-'],
.divided > .row [class*='\:col-'] {
box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
}
Expand Down

0 comments on commit 246051b

Please sign in to comment.