From 0744d14583616ff4568439f81531eaa6d7e1961e Mon Sep 17 00:00:00 2001 From: Gregory Trolliet Date: Sun, 24 Oct 2021 21:10:21 +0200 Subject: [PATCH] [THEME] Fix the width when long info --- static/css/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index a2f19f6..d4400bd 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -233,6 +233,18 @@ a.not(.anchor):focus { /******************* Author Infos *******************/ #author { text-align: center; + margin: 0 auto; + max-width: 90vw; +} +@media only screen and (max-width: 320px) { + #author { + max-width: 100vw; + } +} +@media only screen and (min-width: 1000px) { + #author { + max-width: var(--content-width); + } } #social { list-style: none;