Skip to content

Commit

Permalink
Fix: Certain compilers translate 0 solid to 0solid
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed May 8, 2024
1 parent e59313f commit 4e03a78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
- Antialiased font smoothing looks great
- Set most tags to `margin: 0` and `padding: 0`
- Globaly `box-sizing: border-box`
- Globaly `border: 0`
- Globaly `border-width: 0`
- Globaly `border-style: solid`
- Set controls `color: inherit`
- Set `a, button, [role=button], [type=button]` property `cursor: pointer`
- `line-height: 1.2`
Expand Down
3 changes: 2 additions & 1 deletion packages/core/remove-default-borders.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*, ::before, ::after {
border: 0 solid;
border-width: 0;
border-style: solid;
}

0 comments on commit 4e03a78

Please sign in to comment.