Fix photos 1px right and bottom glitch on some window sizes

This commit is contained in:
2021-11-20 21:38:43 +01:00
parent 9236c3b1b5
commit b6259ea2fa
3 changed files with 6 additions and 6 deletions

View File

@@ -17,8 +17,8 @@
}
img {
display: block;
width: 100%;
height: 100%;
width: calc(100% + 1px);
height: calc(100% + 1px);
object-fit: cover;
}