Skip to content

Commit

Permalink
chore: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jpudysz committed Oct 3, 2023
1 parent 6e4fcdf commit 3fc467b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,3 @@ jobs:

- name: Build package
run: yarn prepare

build-web:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup
uses: ./.github/actions/setup

- name: Build example for Web
run: |
yarn example expo export:web
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<img alt="react-native-unistyles" src="assets/banner.png">
[<img alt="react-native-unistyles" src="assets/banner.png">](https://codemask.com)


<picture>
<source media="(prefers-color-scheme: dark)" srcset="assets/uni-dark.svg">
<img alt="react-native-unistyles" src="assets/uni-light.svg">
</picture>

<hr />

## Features
- ⚡ Blazing fast, adds around ~5ms on top of StyleSheet*
- 🎳 Share up to 100% of your styles across platforms in monorepo
Expand Down Expand Up @@ -205,7 +204,7 @@ For more advanced usage and pixel perfect designs you can also use a custom medi
```ts
:w[200, 500] - with upper and lower bounds, it translates to width from 200-500px
:w[, 800] - with upper bound only, it's equal to width from 0-800px
:h[400] - upper bound only, it means height from 400px
:h[400] - lower bound only, it means height from 400px
:h[200, 300]:w[500] - combined queries for both width and height
```

Expand All @@ -222,7 +221,7 @@ const stylesheet = createStyles(theme => ({
},
backgroundColor: {
xs: theme.colors.background,
':w[601,]': theme.colors.barbie
':w[600]': theme.colors.barbie
}
},
text: {
Expand Down

0 comments on commit 3fc467b

Please sign in to comment.