Merge branch '632' into 'develop'

Fix gif image zoom bug on hover

Closes #632

See merge request pleroma/pleroma-fe!905
This commit is contained in:
Shpuld Shpludson 2019-08-08 10:12:46 +00:00
commit a45f258a2c
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;
}
}