corrade-http-templates – Blame information for rev 61

Subversion Repositories:
Rev:
Rev Author Line No. Line
61 office 1 // stylelint-disable declaration-no-important
2  
3 // Width and height
4  
5 @each $prop, $abbrev in (width: w, height: h) {
6 @each $size, $length in $sizes {
7 .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
8 }
9 }
10  
11 .mw-100 { max-width: 100% !important; }
12 .mh-100 { max-height: 100% !important; }