make size of gif image and preview equal

このコミットが含まれているのは:
taehoon 2019-08-06 22:41:27 -04:00
コミット 4d54c67daa
1個のファイルの変更6行の追加2行の削除

ファイルの表示

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