commit f86449725fd028ffe41cc78c46b051c8eab63578 parent d16db1acbad4c8071a6449280b0871264de064c6 Author: Kévin Le Gouguec <kevin.legouguec@gmail.com> Date: Tue, 16 Mar 2021 23:52:53 +0100 Sacrifice a few more bytes to work around Chrome shenanigans Diffstat:
| M | stylesheets/commun.css | | | 8 | ++++++-- |
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/stylesheets/commun.css b/stylesheets/commun.css @@ -232,10 +232,14 @@ footer.legal { transform: rotate(180deg); padding: 1rem 0.5rem; margin: 0; /* Compensate padding. */ - /* For some reason, Chrome (not Chromium, just Chrome) misaligns this - * if we don't ropecast an align-items on this element. */ + /* For some reason, Chrome 89 misaligns this element if we don't + * ropecast an align-items on it. */ display: flex; align-items: center; + /* For some reason, Chrome 89 (🤨) takes a much wider space than + * necessary on this element if we don't ropecast a max-width + * on it. */ + max-width: 2em; } }