Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #15 from teamleadercrm/eliminate-composes
Browse files Browse the repository at this point in the history
Stop using @COMPOSES to avoid error
  • Loading branch information
driesd authored Jan 6, 2020
2 parents 1b0b272 + f5ab1e4 commit 1a1e9b5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@

### Fixed

## [0.2.1] - 2020-01-06

### Changed

- `@composes`: remove all usages of `@composes` to avoid errors. ([@driesd](https://github.com/driesd) in [#15](https://github.com/teamleadercrm/ui-utilities/pull/15))

## [0.2.0] - 2019-11-19

### Changed
Expand Down
7 changes: 5 additions & 2 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@
}

.reset {
composes: reset-box-sizing;
composes: reset-font-smoothing;
box-sizing: border-box;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
text-size-adjust: 100%;
}

/* Box-shadows */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@teamleader/ui-utilities",
"private": false,
"version": "0.2.0",
"version": "0.2.1",
"description": "Teamleader UI utilities",
"main": "index.css",
"repository": {
Expand Down

0 comments on commit 1a1e9b5

Please sign in to comment.