media queries for min and max size

This commit is contained in:
Andreas N 2015-02-12 17:48:19 +01:00
parent 0f8940435d
commit c033f1f4b2
1 changed files with 7 additions and 1 deletions

View File

@ -123,6 +123,12 @@
@media (max-width: $screen-xs-max) {
.profile--image-dropdown > .visible-xs {
display: inline-block;
display: inline-block !important;
}
}
@media (min-width: $screen-sm-min) {
.profile--image-dropdown > .visible-xs {
display: none !important;
}
}