diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-02-22 03:04:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 03:04:27 +0100 |
commit | 5f3bee345d0fcebabd90a28ada1fab7cd6e70b0e (patch) | |
tree | 1dfcf9eae60214c0d3f88005c00789ed4efc753c | |
parent | 755aad534a67bd5230eb68f821be0d5c390fd2b6 (diff) |
Fix container regression (#6531)
* Update public.html.haml * Update auth.html.haml * Update modal.html.haml
-rw-r--r-- | app/views/layouts/auth.html.haml | 2 | ||||
-rw-r--r-- | app/views/layouts/modal.html.haml | 2 | ||||
-rw-r--r-- | app/views/layouts/public.html.haml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/layouts/auth.html.haml b/app/views/layouts/auth.html.haml index d8ac733f9..eb8949f98 100644 --- a/app/views/layouts/auth.html.haml +++ b/app/views/layouts/auth.html.haml @@ -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 diff --git a/app/views/layouts/modal.html.haml b/app/views/layouts/modal.html.haml index d01b6b6c5..325b4ec72 100644 --- a/app/views/layouts/modal.html.haml +++ b/app/views/layouts/modal.html.haml @@ -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 diff --git a/app/views/layouts/public.html.haml b/app/views/layouts/public.html.haml index 83e92b938..be9648561 100644 --- a/app/views/layouts/public.html.haml +++ b/app/views/layouts/public.html.haml @@ -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 |