Skip to content

Instantly share code, notes, and snippets.

View ChenReuven's full-sized avatar
😀
Happy Coding :)

Chen Reuven ChenReuven

😀
Happy Coding :)
View GitHub Profile
@ChenReuven
ChenReuven / mobile-query-detect.css
Last active December 17, 2017 18:15 — forked from MatthewEppelsheimer/breakpoints.css
CSS: Mobile Query
// Mobile First
@media screen and (min-width: 321px) { // iPhone landscape
}
@media screen and (min-width: 481px) { // iPad portrait
}