Skip to content
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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Roux Changelog

## 0.3.0

- Add new component styles ([#17](https://github.com/thoughtbot/roux/pull/17))
- Add new 11ty docs site running in GitHub Pages (<https://roux.thoughtbot.dev/>) ([#17](https://github.com/thoughtbot/roux/pull/17))
- Fix range input label spacing ([#20](https://github.com/thoughtbot/roux/pull/20))
- Progressively enhance modals with animation ([#24](https://github.com/thoughtbot/roux/pull/24))
- Use a larger font for disclosure summaries ([#23](https://github.com/thoughtbot/roux/pull/23))

## 0.2.2

- WE DON'T NEED BORDER-BOX! Removed `box-sizing: border-box` from normalize. This resulted in form inputs being extra wide. We resolve this by removing `width: 100%;` from inputs. Because we're using flexbox layout, the 100% was unnecessary.
- WE DON'T NEED BORDER-BOX! Remove `box-sizing: border-box` from normalize. This results in form inputs being extra wide. We resolve this by removing `width: 100%;` from inputs. Because we're using flexbox layout, the 100% is unnecessary. ([#18](https://github.com/thoughtbot/roux/pull/18))
- Refer to [Kevin Powell's video on box-sizing](https://www.youtube.com/watch?v=PtAcpV6TAGM) for an explanation of why this change is a good idea

## 0.2.1
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": "roux",
"version": "0.2.2",
"version": "0.3.0",
"description": "A boilerplate of pre-defined native CSS styling & HTML components",
"type": "module",
"homepage": "https://github.com/thoughtbot/roux",
Expand Down
Loading