Guest User

Untitled

a guest
Aug 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // Utilidad de anchuras, en fracciones: .u-1/3
  2.  
  3. $u-widths-fractions: 1 2 3 4 5 !default;
  4.  
  5. @each $denominator in $u-widths-fractions {
  6. @for $numerator from 1 through $denominator {
  7. .u-#{$numerator}\/#{$denominator} {
  8. width: ($numerator / $denominator) * 100% !important;
  9. } } }
Add Comment
Please, Sign In to add comment