Skip to content

Instantly share code, notes, and snippets.

View dfridrich's full-sized avatar
😎
¡Hola!

Dennis Fridrich dfridrich

😎
¡Hola!
View GitHub Profile
// https://css-tricks.com/snippets/sass/maintain-aspect-ratio-mixin/
@mixin aspect-ratio($width, $height) {
position: relative;
&:before {
display: block;
content: "";
width: 100%;
padding-top: ($height / $width) * 100%;
}
> .content {