Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions css/mnml.css
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,7 @@ textarea {
:root {

}

/* ==========================================================================
MEDIA QUERIES
========================================================================== */
Expand Down Expand Up @@ -479,35 +480,23 @@ 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
========================================================================== */

@media screen and (min-width: 32em) {

}




/* Medium - only targets 1st breakpoint. Styles
========================================================================== */

@media screen and (min-width: 32em) and (max-width: 64em) {

}




/* Large - only targets 2nd breakpoint.
========================================================================== */

Expand Down
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
});