Skip to content

Commit

Permalink
fix(grid): ensure the flexgrid styles remain consistent on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMurphy committed Mar 8, 2018
1 parent 70b1ffd commit 23ed3f9
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
.fn-set-width-column-for-size(@number-of-columns, sm);
.fn-set-width-column-for-size(@number-of-columns, md);
.fn-set-width-column-for-size(@number-of-columns, lg);

// On smaller than xs screen sizes all content should be full screen
@media (max-width: @screen-xs-max) {
.up-portlet-wrapper,
.fl-reorderer-dropMarker {
width: 100%;
}
}
}

/*
Expand Down

0 comments on commit 23ed3f9

Please sign in to comment.