Skip to content

Commit

Permalink
Fix container widths
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMcAdams committed Aug 17, 2024
1 parent f28361f commit 684ab81
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ==================================================================
CSS Boilerplate v2.0.1
CSS Boilerplate v2.0.2
The Unlicense <https://unlicense.org>
https://github.com/MattMcAdams/CSS-Boilerplate
================================================================== */
Expand Down Expand Up @@ -1032,21 +1032,18 @@ button[type="reset"][disabled] {
.container {
margin-inline: auto;
padding-inline: var(--space_gutter);
width: 100%;
max-width: var(--width_content);
}

.container--wide {
margin-inline: auto;
padding-inline: var(--space_gutter);
width: 100%;
max-width: var(--width_wide);
}

.container--full {
margin-inline: auto;
padding-inline: var(--space_gutter);
width: 100%;
}

/* Allow nested containers wider than parent */
Expand Down
2 changes: 1 addition & 1 deletion src/_00-meta.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ==================================================================
CSS Boilerplate v2.0.1
CSS Boilerplate v2.0.2
The Unlicense <https://unlicense.org>
https://github.com/MattMcAdams/CSS-Boilerplate
================================================================== */
3 changes: 0 additions & 3 deletions src/_05-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,18 @@
.container {
margin-inline: auto;
padding-inline: var(--space_gutter);
width: 100%;
max-width: var(--width_content);
}

.container--wide {
margin-inline: auto;
padding-inline: var(--space_gutter);
width: 100%;
max-width: var(--width_wide);
}

.container--full {
margin-inline: auto;
padding-inline: var(--space_gutter);
width: 100%;
}

/* Allow nested containers wider than parent */
Expand Down

0 comments on commit 684ab81

Please sign in to comment.