Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(layout): small screen layout attribute selectors
Browse files Browse the repository at this point in the history
layout-attributes.scss - small screen breakpoints (for IE) are out of sync with layout.scss

Closes #5166. Closes #7638
  • Loading branch information
Chris Guerrero authored and ThomasBurleson committed Mar 19, 2016
1 parent dbb75a6 commit 8bda841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/services/layout/layout-attributes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -431,12 +431,12 @@ $layout-breakpoint-lg: 1920px !default;

@media (min-width: $layout-breakpoint-xs) and (max-width: $layout-breakpoint-sm - 1) {
// SMALL SCREEN
[hide-sm], [hide-gt-xs] {
[hide], [hide-gt-xs] {
&:not([show-gt-xs]):not([show-sm]):not([show]) {
display: none;
}
}
[hide-sm]:not([show-sm]):not([show]) {
[hide-sm]:not([show-gt-xs]):not([show-sm]):not([show]) {
display: none;
}
@include layouts_for_breakpoint(sm);
Expand Down

0 comments on commit 8bda841

Please sign in to comment.