@charset "utf-8";
// Copyright 2019, Oath Inc.
// Licensed under the terms of the MIT license. See LICENSE file in project root for terms.

// Paddings
@for $i from 0 through 100 {
  .p-#{$i} {
    padding: 1px * $i !important;
  }
}

// Padding Top
@for $i from 0 through 100 {
  .p-t-#{$i} {
    padding-top: 1px * $i !important;
  }
}

// Padding Right
@for $i from 0 through 100 {
  .p-r-#{$i} {
    padding-right: 1px * $i !important;
  }
}

// Padding Bottom
@for $i from 0 through 100 {
  .p-b-#{$i} {
    padding-bottom: 1px * $i !important;
  }
}

// Padding Left
@for $i from 0 through 100 {
  .p-l-#{$i} {
    padding-left: 1px * $i !important;
  }
}

// Padding Horizontal
@for $i from 0 through 100 {
  .p-x-#{$i} {
    padding-left: 1px * $i !important;
    padding-right: 1px * $i !important;
  }
}

// Padding Vertical
@for $i from 0 through 100 {
  .p-y-#{$i} {
    padding-top: 1px * $i !important;
    padding-bottom: 1px * $i !important;
  }
}
