diff options
author | Simon L <szaimen@e.mail.de> | 2023-10-05 13:05:22 +0200 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-10-05 15:42:47 +0200 |
commit | 6439fdf5b61d982838daf3c5b553577e5d54392c (patch) | |
tree | 4f463713b808762a1a066a0a1d74d329ce198e65 /apps/settings/css/help.css | |
parent | f3f2d9b9784ef3a9304543969a0a88cd1f1054d8 (diff) | |
download | nextcloud-server-6439fdf5b61d982838daf3c5b553577e5d54392c.tar.gz nextcloud-server-6439fdf5b61d982838daf3c5b553577e5d54392c.zip |
Move inline docs to online documentation
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'apps/settings/css/help.css')
-rw-r--r-- | apps/settings/css/help.css | 36 |
1 files changed, 26 insertions, 10 deletions
diff --git a/apps/settings/css/help.css b/apps/settings/css/help.css index a18538c20e6..e5fdd04af7f 100644 --- a/apps/settings/css/help.css +++ b/apps/settings/css/help.css @@ -1,16 +1,32 @@ -.help-includes { - overflow: hidden !important; -} - .help-list__text { margin-left: 24px; } -.help-iframe { - width: 100%; +.help-wrapper { + display: flex; + justify-content: center; + align-items: center; height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: auto; + width: 100%; +} + +.help-content__heading { + text-align: center; + padding: 20px; +} + +.help-content { + display: block; + padding: 20px; +} + +.help-content__body { + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap; +} + +.help-content__body > .button { + margin: 20px; } |