Browse Source

Fix container regression (#6531)

* Update public.html.haml

* Update auth.html.haml

* Update modal.html.haml
pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
5f3bee345d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      app/views/layouts/auth.html.haml
  2. +1
    -1
      app/views/layouts/modal.html.haml
  3. +1
    -1
      app/views/layouts/public.html.haml

+ 1
- 1
app/views/layouts/auth.html.haml View File

@ -2,7 +2,7 @@
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
- content_for :content do
.container
.container-alt
.logo-container
%h1
= link_to root_path do

+ 1
- 1
app/views/layouts/modal.html.haml View File

@ -11,7 +11,7 @@
= link_to destroy_user_session_path, method: :delete, class: 'logout-link icon-button' do
= fa_icon 'sign-out'
.container= yield
.container-alt= yield
.modal-layout__mastodon
%div

+ 1
- 1
app/views/layouts/public.html.haml View File

@ -2,7 +2,7 @@
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
- content_for :content do
.container= yield
.container-alt= yield
.footer
- if !user_signed_in? && single_user_mode?
%span.single-user-login

Loading…
Cancel
Save