Skip to content

Commit

Permalink
re-added ability to hide components on xs-0 etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
zcallan committed Jul 22, 2017
1 parent cf0a924 commit 2a0bebf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/scss/calculate-sizes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
@import './screen-sizes';


.xs-0 { display: none !important }
.sm-0 { display: none !important }
.md-0 { display: none !important }
.lg-0 { display: none !important }

@for $size from 1 through 12 {
@media (max-width: $xs-max) {
.xs-#{$size} { @include col-size( $size ) }
Expand Down

0 comments on commit 2a0bebf

Please sign in to comment.