make size of gif image and preview equal

This commit is contained in:
taehoon 2019-08-06 22:41:27 -04:00
parent 17dc7357d5
commit 4d54c67daa
1 changed files with 6 additions and 2 deletions

View File

@ -61,13 +61,17 @@
}
&.contain-fit {
img, video {
img,
video,
canvas {
object-fit: contain;
}
}
&.cover-fit {
img, video {
img,
video,
canvas {
object-fit: cover;
}
}