Skip to content

Commit c80321f

Browse files
author
vitalets
committed
readme
1 parent 466250f commit c80321f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ render() {
215215
\[[top](#)\]
216216

217217
### Media queries
218-
Media queries are supported in standard format (thanks for idea to @grabbou,
218+
Media queries are supported in standard format (thanks for idea to [@grabbou](https://github.com/grabbou),
219219
[#5](https://github.com/vitalets/react-native-extended-stylesheet/issues/5)).
220-
They allows to have different styles for different screens, platforms, orienation etc.
220+
They allows to have different styles for different screens, platform, orienation etc.
221221
You can define media queries on sheet level or style level.
222222

223223
Supported values are:
@@ -241,7 +241,7 @@ const styles = EStyleSheet.create({
241241
},
242242
header: {
243243
fontSize: 18,
244-
'@media ios': { // media query on style level
244+
'@media ios': { // media query on style level
245245
color: 'green',
246246
},
247247
'@media android': {
@@ -250,7 +250,7 @@ const styles = EStyleSheet.create({
250250
}
251251
});
252252
```
253-
See full example [here](examples/media-queries).
253+
See full example [here](examples/media-queries).
254254
\[[top](#)\]
255255

256256
### Scaling
@@ -291,7 +291,7 @@ let getStyle = function (scale = 1) {
291291
});
292292
}
293293
```
294-
To cache calculated styles please have a look on [caching](#caching) section.
294+
To cache calculated styles please have a look on [caching](#caching) section.
295295
\[[top](#)\]
296296

297297
### Underscored styles

0 commit comments

Comments
 (0)