bigbluebutton-Github/bigbluebutton-html5/imports/ui/stylesheets/styled-components/breakpoints.js
2021-10-27 17:07:09 +00:00

10 lines
247 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)';
export {
smallOnly,
mediumOnly,
mediumUp,
};