1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-08-20 04:31:29 +02:00

Changed media queries for screen specificity

All @media queries now use the 'screen' mediatype, so that print stylesheets can be more easily implemented in the future, using small screen layouts, but not mobile-specific tricks.
This commit is contained in:
Angelos Chalaris
2017-04-02 19:34:04 +03:00
parent fea0188499
commit 16ce611b1d
12 changed files with 61 additions and 57 deletions

View File

@@ -922,3 +922,7 @@
- Added external variables to `contextual`.
- Updated defaults for `progress` module, no externals were needed.
- Added more default values to `utility`. Default and external adding seems complete, I might have missed something, but good enough for now.
## 20170402
- Updated `@media` queries in all modules to utilize `screen`, so that layout changes will only apply to screens (irrelevant in print). `print` stylesheets are coming later down the line and all layouts will print as if in *small* screens (basically `col-sm-...` layouts), to simplifiy everything. Size increased from `6.79KB` to `6.82KB`, worthwhile cost.