Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/forestryio/hugo-theme-novela.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Taillandier <frank@forestry.io>2020-09-23 15:36:42 +0300
committerGitHub <noreply@github.com>2020-09-23 15:36:42 +0300
commit1df9d30674b5faa971f6ceeea3315aca92ee0fcf (patch)
treea42ab38aee90d0b42c0e726d70b6b4cce90d7fd7
parent811b4ca4ebef064f7e016ea589175cccdd75cbab (diff)
parentab9b2b4dbbcb0a7763268a388505db9e690055ec (diff)
Merge pull request #50 from Amoenus/patch-1
Fix: image width
-rw-r--r--assets/scss/global.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/assets/scss/global.scss b/assets/scss/global.scss
index 087ca43..1310fdd 100644
--- a/assets/scss/global.scss
+++ b/assets/scss/global.scss
@@ -209,6 +209,7 @@ img.Image__Zoom ~ div {
}
img{
+ max-width: 100%;
-webkit-animation-name: image-load-in;
animation-name: image-load-in;
-webkit-animation-duration: 0.8s;
@@ -223,4 +224,4 @@ img{
@keyframes image-load-in {
0% {-webkit-filter: blur(8px);filter: blur(8px); opacity: 0;}
100% {-webkit-filter: blur(0);filter: blur(0); opacity: 1;}
-} \ No newline at end of file
+}