mirror of
https://github.com/antebudimir/feishin.git
synced 2026-03-02 12:17:25 +00:00
10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
|
|
const size = {
|
||
|
|
desktop: '320px',
|
||
|
|
mobile: '640px',
|
||
|
|
};
|
||
|
|
|
||
|
|
export const device = {
|
||
|
|
desktop: `(max-width: ${size.desktop})`,
|
||
|
|
mobile: `(max-width: ${size.mobile})`,
|
||
|
|
};
|