UNPKG

@story-telling-reporter/react-ui-toolkit

Version:
22 lines (21 loc) 702 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mediaQuery = exports.default = exports.breakpoints = void 0; const breakpoints = exports.breakpoints = { small: 320, medium: 760, large: 1440 }; const mediaQuery = exports.mediaQuery = { smallOnly: `@media (max-width: ${breakpoints.medium - 1}px)`, mediumOnly: `@media (min-width: ${breakpoints.medium}px) and (max-width: ${breakpoints.large - 1}px)`, mediumAbove: `@media (min-width: ${breakpoints.medium}px)`, largeBelow: `@media (max-width: ${breakpoints.large - 1}px)`, largeOnly: `@media (min-width: ${breakpoints.large}px)` }; var _default = exports.default = { breakpoints, mediaQuery };