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

Breadcrumb

  1. Drupal Core 11.1.x

layout-2-col.css

This file is used to create the layout when the theme has 2 columns.

File

core/profiles/demo_umami/themes/umami/css/layout/layout-2-col.css

View source
  1. /**
  2. * @file
  3. * This file is used to create the layout when the theme has 2 columns.
  4. */
  5. .two-columns .main-content-area {
  6. display: grid;
  7. gap: 14px;
  8. }
  9. /* Large */
  10. @media screen and (min-width: 60rem) {
  11. /* 960px */
  12. .two-columns .main-content-area {
  13. grid-template-columns: 72% 1fr;
  14. gap: 3%;
  15. }
  16. }

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal