@homebound/beam 2.193.0 → 2.194.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Css.js +4 -4
- package/package.json +1 -1
package/dist/Css.js
CHANGED
|
@@ -1000,9 +1000,9 @@ var Palette;
|
|
|
1000
1000
|
exports.Css = new CssBuilder({ rules: {}, enabled: true, important: false, selector: undefined });
|
|
1001
1001
|
exports.print = "@media print";
|
|
1002
1002
|
exports.sm = "@media screen and (max-width:599px)";
|
|
1003
|
-
exports.md = "@media screen and (min-width:600px) and (max-width:
|
|
1004
|
-
exports.smOrMd = "@media screen and (max-width:
|
|
1003
|
+
exports.md = "@media screen and (min-width:600px) and (max-width:1024px)";
|
|
1004
|
+
exports.smOrMd = "@media screen and (max-width:1024px)";
|
|
1005
1005
|
exports.mdAndUp = "@media screen and (min-width:600px)";
|
|
1006
|
-
exports.mdAndDown = "@media screen and (max-width:
|
|
1007
|
-
exports.lg = "@media screen and (min-width:
|
|
1006
|
+
exports.mdAndDown = "@media screen and (max-width:1024px)";
|
|
1007
|
+
exports.lg = "@media screen and (min-width:1025px)";
|
|
1008
1008
|
exports.mdOrLg = "@media screen and (min-width:600px)";
|