index.module.scss 366 B

123456789
  1. @use "../theme";
  2. :export {
  3. breakpointSm: #{theme.map-get-strict(theme.$breakpoints, "sm")};
  4. breakpointMd: #{theme.map-get-strict(theme.$breakpoints, "md")};
  5. breakpointLg: #{theme.map-get-strict(theme.$breakpoints, "lg")};
  6. breakpointXl: #{theme.map-get-strict(theme.$breakpoints, "xl")};
  7. breakpoint2Xl: #{theme.map-get-strict(theme.$breakpoints, "2xl")};
  8. }