Skip to content

Releases: mg901/styled-breakpoints

v9.0.9

12 Jan 06:47
Compare
Choose a tag to compare

9.0.9 (2021-01-12)

Bug Fixes

  • add exception for MediaQueryList event listener for Safari < 14 (8b989f0)

v9.0.8

06 Dec 18:02
Compare
Choose a tag to compare

9.0.8 (2020-12-06)

Bug Fixes

  • use-breakpoint: eliminated erroneous rehydration after server si… (#869) (385d4e1)

v9.0.7

05 Dec 10:36
Compare
Choose a tag to compare

9.0.7 (2020-12-05)

Bug Fixes

v9.0.6

05 Dec 10:31
Compare
Choose a tag to compare

9.0.6 (2020-12-05)

Bug Fixes

v9.0.5

05 Dec 10:27
Compare
Choose a tag to compare

9.0.5 (2020-12-05)

Bug Fixes

v9.0.4

05 Dec 07:45
Compare
Choose a tag to compare

9.0.4 (2020-12-05)

Bug Fixes

  • fix typo in package.json on 'down' import (#861) (0caa31f)

v9.0.3

01 Dec 01:07
Compare
Choose a tag to compare

9.0.3 (2020-12-01)

Bug Fixes

v9.0.2

30 Nov 23:41
Compare
Choose a tag to compare

9.0.2 (2020-11-30)

Bug Fixes

v9.0.1

16 Nov 10:42
Compare
Choose a tag to compare

9.0.1 (2020-11-16)

Bug Fixes

  • readme: fix the link to desktop first (7c3e867)

v9.0.0

13 Nov 14:58
Compare
Choose a tag to compare

9.0.0 (2020-11-13)

Code Refactoring

  • replace default breakpoints (76bc360)

Features

  • add support for emotion (a4c612c)

BREAKING CHANGES

  • replace default breakpoints
- {
-   tablet: '768px',
-   desktop: '992px',
-   lgDesktop: '1200px',
- }

+ {
+   sm: '576px',
+   md: '768px',
+   lg: '992px',
+   xl: '1200px',
+ }