Skip to content

Commit

Permalink
Adding responsive util classes for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rramo012 committed Jan 14, 2018
1 parent 8f2076a commit fa921b7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/main.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import './scss/directional-control.scss';
@import './scss/responsive-util.scss';

.bg-tabs-content {
padding: 40px;
Expand Down
23 changes: 23 additions & 0 deletions src/app/scss/responsive-util.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}

@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}

0 comments on commit fa921b7

Please sign in to comment.