Skip to content

Instantly share code, notes, and snippets.

@davaynamore
Last active December 16, 2019 12:52
Show Gist options
  • Save davaynamore/f6bffc2a55f2e7b69ab80e2bd78ed963 to your computer and use it in GitHub Desktop.
Save davaynamore/f6bffc2a55f2e7b69ab80e2bd78ed963 to your computer and use it in GitHub Desktop.
padding hack for images
@mixin padding-hack($padding, $object-fit: contain) {
position: relative;
padding-top: $padding;
@content;
& > img {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: $object-fit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment