1
0
mirror of https://akkoma.dev/lamp/akkoma-fe.git synced 2025-08-04 18:31:52 -04:00

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

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