GITLAB

Marcelo Puebla / autoservicio-axion

Sign in
  • Sign in
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • autoservicio-axion
  • src
  • scss
  • height-width.scss
  • 22a4aaade   Creado footer Browse Code ยป
    Marcelo Puebla
    2019-12-23 13:01:59 -0300  
height-width.scss 218 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13
@for $i from 1 through 100 {
  $heightValue: 1% * $i;
  .h-#{$i} {
    height: $heightValue !important;
  }
}

@for $i from 1 through 100 {
  $widthValue: 1% * $i;
  .w-#{$i} {
    width: $widthValue !important;
  }
}