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

// Width

.w-auto {
  min-width: auto !important;
  width: auto !important;
}

.w-full {
  width: 100% !important;
}

.w-fitcontent {
  width: fit-content !important;
}

@for $i from 0 through 50 {
  .w-#{$i} {
    width: 5px * $i !important;
  }

  .min-w-#{$i} {
    min-width: 5px * $i !important;
  }

  .max-w-#{$i} {
    max-width: 5px * $i !important;
  }
}

// Height

.h-minus-nav {
  height: calc(100vh - 60px) !important;
}

.h-full {
  height: 100% !important;
}

@for $i from 0 through 50 {
  .h-#{$i} {
    height: 5px * $i !important;
  }

  .min-h-#{$i} {
    min-height: 5px * $i !important;
  }

  .max-w-#{$i} {
    max-width: 5px * $i !important;
  }
}