-
TIL
@media not (min-width: 60rem) { … }
doesn't work in Safari, while it works on Chromium browsers and Firefox. Safari requires a media type, likeall
. So here's the "right" syntax:@Media not all and (min-width: 60rem) { … }
nicolas-hoizey.com/notes/2022/11/02/1/