2021-10-25 21:29:29 +08:00
|
|
|
const smallOnly = 'only screen and (max-width: 40em)';
|
2021-10-28 01:07:09 +08:00
|
|
|
const mediumOnly = 'only screen and (min-width: 40.063em) and (max-width: 64em)';
|
2021-10-28 00:21:57 +08:00
|
|
|
const mediumUp = 'only screen and (min-width: 40.063em)';
|
2021-11-03 00:25:39 +08:00
|
|
|
const phoneLandscape = 'only screen and (max-width: 480px) and (orientation: landscape)';
|
2021-10-25 21:29:29 +08:00
|
|
|
|
|
|
|
export {
|
|
|
|
smallOnly,
|
2021-10-28 01:07:09 +08:00
|
|
|
mediumOnly,
|
2021-10-28 00:21:57 +08:00
|
|
|
mediumUp,
|
2021-11-03 00:25:39 +08:00
|
|
|
phoneLandscape,
|
2021-10-25 21:29:29 +08:00
|
|
|
};
|