GITLAB

Luis Suarez / autoservicio-axion

Sign in
  • Sign in
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • autoservicio-axion
  • src
  • scss
  • height-width.scss
  • 282e37b43   Agregado publicidades y promociones Browse Code ยป
    Marcelo Puebla
    2020-01-20 19:30:09 -0300  
height-width.scss 288 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
@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;
  }
}

.min-h-50 {
  min-height: 50px;
}

.min-h-60 {
  min-height: 60px;
}