feishin/src/renderer/styles/helpers.ts

10 lines
169 B
TypeScript
Raw Normal View History

2022-12-19 15:59:14 -08:00
const size = {
desktop: '320px',
mobile: '640px',
};
export const device = {
desktop: `(max-width: ${size.desktop})`,
mobile: `(max-width: ${size.mobile})`,
};