diff --git a/CHANGELOG.md b/CHANGELOG.md index d98ea0da..1cdfea25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # @UrbanInstitute/dataviz-components Changelog +## 0.3.2 + +- Update `wide` Block width + ## 0.3.1 - Bugfix, add missing exports diff --git a/package-lock.json b/package-lock.json index 7e1f882c..d0c222d0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@urbaninstitute/dataviz-components", - "version": "0.3.1", + "version": "0.3.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@urbaninstitute/dataviz-components", - "version": "0.3.1", + "version": "0.3.2", "dependencies": { "d3-format": "^3.1.0", "layercake": "^8.0.0" diff --git a/package.json b/package.json index 9d52fb55..f4e5aac8 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/lib/Block/Block.svelte b/src/lib/Block/Block.svelte index 4cc10e53..30f6a205 100644 --- a/src/lib/Block/Block.svelte +++ b/src/lib/Block/Block.svelte @@ -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) { diff --git a/src/lib/style/app.css b/src/lib/style/app.css index 21f2b53e..8fe03032 100644 --- a/src/lib/style/app.css +++ b/src/lib/style/app.css @@ -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);