Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,19 @@ First, you need to have an NPM account and be a contributor to the shared-compon

#### Update the NPM Version

Open the [shared-components app](https://shared-components.glitch.me) on Glitch, then run
Open the [shared-components app](https://shared-components.glitch.me) on Glitch, then

```
# 1. Update the NPM version
# 1. Pull the latest changes from Github
git pull origin master

# 2. Update the NPM version
npm version patch

# 2. Update changelog.md with your changes
# 3. Update changelog.md with your changes

# 3. Push your changes to Github
# 4. Push your changes to Github
git push origin master
```

Finally, publish these changes to NPM
Expand Down
4 changes: 2 additions & 2 deletions lib/themes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const baseTheme = {
sans: "'Benton Sans', Helvetica, sans-serif",
},
z: {
notifications: 10,
overlay: 15,
notifications: "10",
overlay: "15",
},
// TODO: should these be in px or rem?
breakpoints: ['414px', '592px', '670px', '900px', '1080px'],
Expand Down