Skip to content

Instantly share code, notes, and snippets.

@sharbel93
Created August 23, 2019 10:02
Show Gist options
  • Save sharbel93/d7e94833b1bc0f8585ac4912478ce79f to your computer and use it in GitHub Desktop.
Save sharbel93/d7e94833b1bc0f8585ac4912478ce79f to your computer and use it in GitHub Desktop.
Media queries for mobile apps ionic
@media only screen and (max-device-width: 375px) {
.card_cl{
background-color: #e60003;
}
}
@media only screen and (min-device-width: 380px) {
.card_cl{
background-color: #2a015e;
}
}
@media only screen and (min-device-width: 414px) {
.card_cl{
background-color: #3a9d5d;
}
}
@media only screen and (min-device-width: 768px) {
.card_cl{
background-color: #1e9ecb;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment