mirror of
https://github.com/outline/outline.git
synced 2025-12-30 15:30:12 -06:00
13 lines
354 B
TypeScript
13 lines
354 B
TypeScript
const breakpoints = {
|
|
mobile: 0,
|
|
mobileLarge: 460,
|
|
// targeting all devices
|
|
tablet: 737,
|
|
// targeting devices that are larger than the iPhone 6 Plus (which is 736px in landscape mode)
|
|
desktop: 1025,
|
|
// targeting devices that are larger than the iPad (which is 1024px in landscape mode)
|
|
desktopLarge: 1600,
|
|
};
|
|
|
|
export default breakpoints;
|