diff --git a/README.md b/README.md index 8de5275f..f74d573a 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ const Component = styled.div` ### up ```js - // >= 768px + // tablets, 768px and up up('tablet') => '@media (min-width: 768px) { ... }' ``` @@ -141,7 +141,6 @@ const Component = styled.div` We occasionally use media queries that go in the other direction (the given screen size or smaller): ```js - // >= 768px && <= 991.98px down('tablet') => '@media (max-width: 991.98px) { ... }' ```