Skip to content

Instantly share code, notes, and snippets.

@jaysoo
Created March 20, 2019 18:18
Show Gist options
  • Save jaysoo/c52caa633b1d2c4813c3ab35164513b8 to your computer and use it in GitHub Desktop.
Save jaysoo/c52caa633b1d2c4813c3ab35164513b8 to your computer and use it in GitHub Desktop.
// libs/gifs/src/lib/gifs.scss
.gif-search-input {
width: 500px;
display: block;
font-size: 24px;
margin: 10px 0;
}
.gif-list {
display: grid;
grid-template-columns: repeat(5, calc(20% - 5px));
grid-gap: 5px;
}
.gif-list-item {
width: 100%;
a,
img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment