twocol.css 459 B

1234567891011121314151617181920212223
  1. /*
  2. * @file
  3. * Provides the layout styles for layout_twocol.
  4. *
  5. * @todo Using display: flex requires https://www.drupal.org/node/2842298 to be
  6. * in before this can be marked as stable.
  7. */
  8. .layout--twocol {
  9. display: flex;
  10. flex-wrap: wrap;
  11. }
  12. .layout--twocol > .layout__region {
  13. flex: 0 1 100%;
  14. }
  15. @media screen and (min-width: 40em) {
  16. .layout--twocol > .layout__region--first,
  17. .layout--twocol > .layout__region--second {
  18. flex: 0 1 50%;
  19. }
  20. }