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

github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Negrel <negrel.dev@protonmail.com>2020-12-27 21:44:35 +0300
committerAlexandre Negrel <negrel.dev@protonmail.com>2020-12-27 21:44:35 +0300
commit784362674c8b3f37e96897e4e0ca4f5566212e62 (patch)
tree19602b14a169d97d390b068f70fd0861a5eb7ee0
parent676687787ad27118c33b08e96a2e19d79fc60665 (diff)
fixing overflow on lg screen with hero widget
-rw-r--r--layouts/partials/widgets/hero.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/widgets/hero.html b/layouts/partials/widgets/hero.html
index 2749b2e..d29c5f6 100644
--- a/layouts/partials/widgets/hero.html
+++ b/layouts/partials/widgets/hero.html
@@ -24,7 +24,7 @@
{{ with .Params.hero_media }}
<div
- class="my-6 p-4 mx-auto max-w-3/4 sm:max-w-2/3 md:max-w-1/2 lg:relative lg:-right-12 xl:-right-16 shadow-soft relative">
+ class="my-6 p-4 mx-auto max-w-3/4 sm:max-w-2/3 md:max-w-1/2 lg:relative lg:-right-10 xl:-right-16 shadow-soft relative">
<img src="{{ . | relURL}}" alt="hero image" class="max-h-vh-3/4">
</div>
{{ end }}