diff options
author | 2018-06-02 15:48:11 +0100 | |
---|---|---|
committer | 2018-06-02 15:48:11 +0100 | |
commit | 7ac10880a209cdaf4d6de63d58490710c922fded (patch) | |
tree | e9ea40672cc9f8f143abda9f8f26a7d58f6c15d8 /templates/wiki | |
parent | Allow nav dropdown vertical scrolling (diff) |
[Wiki] Codeblocks should no longer be way too wide on mobile
Diffstat (limited to 'templates/wiki')
-rw-r--r-- | templates/wiki/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/wiki/base.html b/templates/wiki/base.html index 185229a8..ee4e7d10 100644 --- a/templates/wiki/base.html +++ b/templates/wiki/base.html @@ -191,7 +191,7 @@ <a class="uk-flex-left uk-flex uk-flex-column uk-background-primary uk-hidden@s uk-hidden@m uk-hidden@l uk-hidden@xl" id="wiki-sidebar-button"> <div class="uk-flex-center"><i class="uk-icon fa-fw far fa-bars"></i></div> </a> - <div class="uk-section" style="flex-grow: 1; margin: 0 1rem 1rem;"> + <div class="uk-section uk-flex uk-flex-column" id="doc-view" style="flex-grow: 1; margin: 0 1rem 1rem; width: calc(100% - 6rem)"> {% block content %}{% endblock %} </div> </div> |