Skip to content
Snippets Groups Projects
_mixins.aspect-ratio.scss 143 B
Newer Older
Tyler Struyk's avatar
Tyler Struyk committed
// @file
// Aspect Ratio mixin

@mixin aspect-ratio($width, $height) {
  height: 0;
  padding-top: ($height / $width) * 100%;
  width: 100%;
}