12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.defaultBreakpoints = void 0;
|
||
|
exports.defaultBreakpoints = {
|
||
|
xs: 0, // mobile
|
||
|
s: 640, // tablet
|
||
|
m: 1024, // laptop s
|
||
|
l: 1280, // laptop
|
||
|
xl: 1536, // laptop l
|
||
|
xxl: 1920 // normal desktop display
|
||
|
};
|