diff --git a/css/mnml.css b/css/mnml.css index 60282b4..7417883 100644 --- a/css/mnml.css +++ b/css/mnml.css @@ -447,6 +447,7 @@ textarea { :root { } + /* ========================================================================== MEDIA QUERIES ========================================================================== */ @@ -479,15 +480,9 @@ html, body { height: 100%; } - Large ========================================================================== */ - - - /* Mobile-first classes here (No media query needed, these styles are global) ========================================================================== */ - - - /* Medium and Up - Targets everything larger than mobile ========================================================================== */ @@ -495,9 +490,6 @@ html, body { height: 100%; } } - - - /* Medium - only targets 1st breakpoint. Styles ========================================================================== */ @@ -505,9 +497,6 @@ html, body { height: 100%; } } - - - /* Large - only targets 2nd breakpoint. ========================================================================== */ diff --git a/index.js b/index.js index 5f336c4..915f8cd 100644 --- a/index.js +++ b/index.js @@ -28,8 +28,8 @@ output = postcss() // Using Clean-css for CSS -new compressor.minify({ - type: 'clean-css', - fileIn: './css/mnml.css', - fileOut: './css/mnml.min.css' +compressor.minify({ + compressor: 'clean-css', + input: './css/mnml.css', + output: './css/mnml.min.css' });