mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-30 09:29:58 -07:00
* adds breakpoint stores to allow selective rendering on screen size * removes unused type * formatting
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
/** These are the default Tailwind CSS breakpoints.
|
|
* We're defining them here so they can be referenced
|
|
* programmatically in other parts of the application.
|
|
*/
|
|
export const breakpoints = {
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1280px',
|
|
'2xl': '1536px',
|
|
} as const;
|