Fix page body not being scrollable in admin layout (#11893)

Hide navigation behind hamburger icon on small screens in admin layout
This commit is contained in:
Eugen Rochko
2019-09-20 10:52:14 +02:00
committed by GitHub
parent 37ccafec8f
commit b9a8b38844
4 changed files with 142 additions and 29 deletions

View File

@ -4,11 +4,21 @@
- content_for :content do
.admin-wrapper
.sidebar-wrapper
.sidebar
= link_to root_path do
= image_pack_tag 'logo.svg', class: 'logo', alt: 'Mastodon'
.sidebar-wrapper__inner
.sidebar
= link_to root_path do
= image_pack_tag 'logo.svg', class: 'logo', alt: 'Mastodon'
.sidebar__toggle
.sidebar__toggle__logo
= link_to root_path do
= svg_logo_full
= link_to '#', class: 'sidebar__toggle__icon' do
= fa_icon 'bars'
= render_navigation
= render_navigation
.content-wrapper
.content
%h2= yield :page_title
@ -17,4 +27,6 @@
= yield
.sidebar-wrapper.sidebar-wrapper--empty
= render template: 'layouts/application'