Skip to content

Commit

Permalink
Merge pull request #22 from UrbanInstitute/patch-block-width
Browse files Browse the repository at this point in the history
Patch block width
  • Loading branch information
mitchthorson authored Feb 13, 2024
2 parents 31aba20 + 7c27cec commit 63e092e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @UrbanInstitute/dataviz-components Changelog

## 0.3.2

- Update `wide` Block width

## 0.3.1

- Bugfix, add missing exports
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urbaninstitute/dataviz-components",
"version": "0.3.1",
"version": "0.3.2",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Block/Block.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
.layout-block.wide {
max-width: var(--wide-max-width, 1165px);
max-width: var(--wide-max-width, 1160px);
}
@media screen and (min-width: 792px) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/style/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
--spacing-16: 4rem;
--spacing-20: 5rem;
--body-max-width: 760px;
--wide-max-width: 1165px;
--wide-max-width: 1160px;
--color-text-primary: var(--color-gray-shade-darkest);
--color-text-secondary: var(--color-black);
--color-text-accent: var(--color-blue);
Expand Down

0 comments on commit 63e092e

Please sign in to comment.