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

Breadcrumb

  1. Drupal Core 11.1.x

media-queries.pcss.css

Same filename in this branch
  1. 11.1.x core/modules/navigation/css/base/media-queries.pcss.css
/*
 * Media query breakpoints.
 * Processed by postcss/postcss-custom-media.
 */

@custom-media --sm (min-width: 500px);
@custom-media --md (min-width: 700px);
@custom-media --lg (min-width: 1000px);
@custom-media --xl (min-width: 1300px);

/* Navigation related breakpoints */
@custom-media --nav-md (min-width: 500px);
@custom-media --nav (min-width: 1200px);
@custom-media --max-nav (max-width: 1200px);

/* Grid related breakpoints */
@custom-media --grid-md (min-width: 700px); /* Grid shifts from 6 to 14 columns. */
@custom-media --grid-max (min-width: 1440px); /* Width of the entire grid maxes out. */

File

core/themes/olivero/css/base/media-queries.pcss.css

View source
  1. /*
  2. * Media query breakpoints.
  3. * Processed by postcss/postcss-custom-media.
  4. */
  5. @custom-media --sm (min-width: 500px);
  6. @custom-media --md (min-width: 700px);
  7. @custom-media --lg (min-width: 1000px);
  8. @custom-media --xl (min-width: 1300px);
  9. /* Navigation related breakpoints */
  10. @custom-media --nav-md (min-width: 500px);
  11. @custom-media --nav (min-width: 1200px);
  12. @custom-media --max-nav (max-width: 1200px);
  13. /* Grid related breakpoints */
  14. @custom-media --grid-md (min-width: 700px); /* Grid shifts from 6 to 14 columns. */
  15. @custom-media --grid-max (min-width: 1440px); /* Width of the entire grid maxes out. */

API Navigation

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