bigbluebutton-Github/bigbluebutton-html5/imports/ui/stylesheets/styled-components/breakpoints.js
2021-11-08 11:39:17 +00:00

14 lines
423 B
JavaScript

const smallOnly = 'only screen and (max-width: 40em)';
const mediumOnly = 'only screen and (min-width: 40.063em) and (max-width: 64em)';
const mediumUp = 'only screen and (min-width: 40.063em)';
const phoneLandscape = 'only screen and (max-width: 480px) and (orientation: landscape)';
const largeUp = 'only screen and (min-width: 64.063em)';
export {
smallOnly,
mediumOnly,
mediumUp,
phoneLandscape,
largeUp,
};