Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

fourcol_section.css

Same filename in this branch
  1. 11.1.x core/profiles/demo_umami/themes/umami/layouts/fourcol_section/fourcol_section.css
  2. 11.1.x core/themes/stable9/layouts/layout_builder/fourcol_section/fourcol_section.css
/*
 * @file
 * Provides the layout styles for four-column layout section.
 */

.layout--fourcol-section {
  display: flex;
  flex-wrap: wrap;
}

.layout--fourcol-section > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--fourcol-section > .layout__region {
    flex: 0 1 25%;
  }
}

File

core/modules/layout_builder/layouts/fourcol_section/fourcol_section.css

View source
  1. /*
  2. * @file
  3. * Provides the layout styles for four-column layout section.
  4. */
  5. .layout--fourcol-section {
  6. display: flex;
  7. flex-wrap: wrap;
  8. }
  9. .layout--fourcol-section > .layout__region {
  10. flex: 0 1 100%;
  11. }
  12. @media screen and (min-width: 40em) {
  13. .layout--fourcol-section > .layout__region {
  14. flex: 0 1 25%;
  15. }
  16. }
RSS feed
Powered by Drupal