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:
authorRomans Pokrovskis <motivated.it@gmail.com>2020-08-09 01:20:19 +0300
committerGitHub <noreply@github.com>2020-08-09 01:20:19 +0300
commitff2f9669ee8ee905579114234642cdf0534ddc31 (patch)
treeaed15cd9fb437df5c4384b9b9c39ae86981792a0
parent811b4ca4ebef064f7e016ea589175cccdd75cbab (diff)
Update global.scss
Ensuring all images fit inside the bounds of the theme. This somewhat fixes #28
-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..1cb92a7 100644
--- a/assets/scss/global.scss
+++ b/assets/scss/global.scss
@@ -209,6 +209,7 @@ img.Image__Zoom ~ div {
}
img{
+ 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
+}