styled-responsive
Version:
Responsive helpers for :nail_care: styled-components. Mobile-first and react-native ready.
26 lines (25 loc) • 801 B
JavaScript
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define(['exports'], factory);
} else if (typeof exports !== "undefined") {
factory(exports);
} else {
var mod = {
exports: {}
};
factory(mod.exports);
global.defaultBreakpoints = mod.exports;
}
})(this, function (exports) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var defaultBreakpoints = exports.defaultBreakpoints = {
xs_: 'only screen and (min-width: 0px)',
sm_: 'only screen and (min-width: 576px)',
md_: 'only screen and (min-width: 768px)',
lg_: 'only screen and (min-width: 992px)',
xl_: 'only screen and (min-width: 1200px)'
};
});