diff options
| -rw-r--r-- | stylesheets/commun.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/stylesheets/commun.css b/stylesheets/commun.css index 49071bf..4581f85 100644 --- 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; } } |
