Skip to content

Commit

Permalink
❗ feat(layout.scss): Deprecating row.no-space classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderpig86 committed Jun 16, 2024
1 parent 1295016 commit 8e802f9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 20 deletions.
4 changes: 0 additions & 4 deletions next/dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -3211,10 +3211,6 @@ section {
margin-left: 100% !important;
}
}
.row.no-space [class^=col-], .row.no-space [class*=" col-"], .row.no-space [class*=":col-"] {
padding: 0;
}

.level {
align-items: center;
justify-content: space-between;
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus-all.min.css

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions next/dist/cirrus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -3036,10 +3036,6 @@ section {
margin-left: 100% !important;
}
}
.row.no-space [class^=col-], .row.no-space [class*=" col-"], .row.no-space [class*=":col-"] {
padding: 0;
}

.level {
align-items: center;
justify-content: space-between;
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus-core.min.css

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions next/dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -3037,10 +3037,6 @@ section {
margin-left: 100% !important;
}
}
.row.no-space [class^=col-], .row.no-space [class*=" col-"], .row.no-space [class*=":col-"] {
padding: 0;
}

.level {
align-items: center;
justify-content: space-between;
Expand Down
2 changes: 1 addition & 1 deletion next/dist/cirrus.min.css

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions next/src/base/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,11 @@ 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;
}
// &.no-space [class^='col-'],
// &.no-space [class*=' col-'],
// &.no-space [class*='\:col-'] {
// padding: 0;
// }
}

.level {
Expand Down

0 comments on commit 8e802f9

Please sign in to comment.