Skip to content

Instantly share code, notes, and snippets.

View dandgerson's full-sized avatar
⚛️
what the actual hell happens in this damn component

Dmitry Anderson dandgerson

⚛️
what the actual hell happens in this damn component
View GitHub Profile
@dandgerson
dandgerson / breakpoints.css
Last active January 8, 2022 18:43
Mobile first breakpoints
@media (min-width:321px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width:481px) { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:601px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }