mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
const size = {
|
|
desktop: '320px',
|
|
mobile: '640px',
|
|
};
|
|
|
|
export const device = {
|
|
desktop: `(max-width: ${size.desktop})`,
|
|
mobile: `(max-width: ${size.mobile})`,
|
|
};
|