Skip to content

Commit

Permalink
Fix block widths
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Dec 31, 2022
1 parent 057e037 commit a602ddb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.1.3: 2022-12-31

* Fix block widths
* Fix component styles

### 2.1.2: 2022-12-31

* Fix nav button background color on mobile
Expand Down
6 changes: 3 additions & 3 deletions air-light-demo-content.php
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,11 @@ function demo_css() { ?>
border-bottom: 1px solid var(--color-cyan-bright);
border-top: 1px solid var(--color-black);
justify-self: center;
margin: var(--margin-body);
max-width: 1900px;
margin: var(--margin-body) auto;
max-width: calc(1620px - 40px);
overflow: visible;
padding: var(--margin-body);
width: calc(100% - 4rem);
z-index: 4;
}

Expand Down Expand Up @@ -658,7 +659,6 @@ function demo_css() { ?>
display: flex;
flex-wrap: wrap;
margin-top: 6rem;
margin-bottom: -4rem;
align-items: flex-start;
gap: 4rem;
}
Expand Down

0 comments on commit a602ddb

Please sign in to comment.