Merge pull request #345 from kerenon/fix-343

Don't zoom in on small images in preview window
This commit is contained in:
Ji Qu
2022-05-14 22:25:46 +08:00
committed by GitHub

View File

@@ -120,6 +120,9 @@ export default {
}
/* preview size should always less then screen */
.card-image img {
width: 100%;
padding: 10px;
margin-left: auto;
margin-right: auto;
width: auto;
}
</style>