diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-01 14:24:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 14:24:21 +0200 |
commit | ca2942aa014a5b31ec685484d181c77c828b4d7b (patch) | |
tree | 5cc2f7000477cd9b88074d97ff6a03618b379f61 | |
parent | 816c474592049a8eb6f9ac19f788efc727de2d7c (diff) | |
parent | 688de57c500fed05aa34b15e428050bcb240dd89 (diff) | |
download | nextcloud-server-ca2942aa014a5b31ec685484d181c77c828b4d7b.tar.gz nextcloud-server-ca2942aa014a5b31ec685484d181c77c828b4d7b.zip |
Merge pull request #11499 from nextcloud/public-footer
Fix public page footer link wrap
-rw-r--r-- | core/css/public.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/css/public.scss b/core/css/public.scss index 5f02dc1762b..052c98e29ea 100644 --- a/core/css/public.scss +++ b/core/css/public.scss @@ -73,8 +73,11 @@ $footer-height: 65px; a { color: var(--color-text-lighter); font-weight: 600; + white-space: nowrap; + /* increasing clickability to more than the text height */ padding: 13px; margin: -13px; + line-height: 200%; } } } |