Browse Source
Merge pull request #345 from kerenon/fix-343
Don't zoom in on small images in preview window
pull/347/head
Ji Qu
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
pinry-spa/src/components/PinPreview.vue
|
|
@@ -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> |