sentry-grid.less 326 B

12345678910111213141516171819202122
  1. //
  2. // Sentry Grid
  3. // Extends Bootstrap 3's grids to allow for:
  4. // - Flexbox-based layouts
  5. // - Center columns vertically
  6. .row {
  7. &.row-flex {
  8. display: flex;
  9. flex-wrap: wrap;
  10. &:before,
  11. &:after {
  12. display: initial;
  13. }
  14. }
  15. &.row-center-vertically {
  16. display: flex;
  17. align-items: center;
  18. }
  19. }