yoda-common-boilerplate
Version:
Repository of all JCP reusable atoms, molecules and organisms
7 lines (6 loc) • 338 B
CSS
/* media queries for different width */
@custom-media --viewport-sm (width <= 640px);
@custom-media --viewport-md (width > 640px) and (width <= 1200px);
@custom-media --viewport-lg (width > 1200px) and (width <= 1440px);
@custom-media --viewport-xlg (width > 1440px) and (width <= 1920px);
@custom-media --viewport-xxlg (width > 1920px);