Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-12 18:13:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-12 18:13:54 +0300
commit98638cd5e43611aac2193a5c2f80f72374040430 (patch)
tree6605f0f284efed1d05708b3799f093eb5e305a8f /app/views/layouts/devise.html.haml
parent43d816ebc20da6ff959176248c70d8c4c7c9345a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/layouts/devise.html.haml')
-rw-r--r--app/views/layouts/devise.html.haml35
1 files changed, 23 insertions, 12 deletions
diff --git a/app/views/layouts/devise.html.haml b/app/views/layouts/devise.html.haml
index bed3995cb35..71771dd7cb6 100644
--- a/app/views/layouts/devise.html.haml
+++ b/app/views/layouts/devise.html.haml
@@ -10,18 +10,29 @@
.container.navless-container
.content
= render "layouts/flash"
- .mt-3
- .col-sm-12.gl-text-center
- = brand_image
- %h1.mb-3.gl-font-size-h2
- = brand_title
- - if current_appearance&.description?
- = brand_text
- = render_if_exists 'layouts/devise_help_text'
- .mb-3
- .gl-w-half.gl-xs-w-full.gl-ml-auto.gl-mr-auto.bar
- = yield
-
+ - if current_appearance&.description?
+ .row
+ .col-md.order-12.sm-bg-gray-10
+ .col-sm-12
+ %h1.mb-3.gl-font-size-h2
+ = brand_title
+ = brand_text
+ = render_if_exists 'layouts/devise_help_text'
+ .col-md.order-md-12
+ .col-sm-12.bar
+ .gl-text-center
+ = brand_image
+ = yield
+ - else
+ .mt-3
+ .col-sm-12.gl-text-center
+ = brand_image
+ %h1.mb-3.gl-font-size-h2
+ = brand_title
+ = render_if_exists 'layouts/devise_help_text'
+ .mb-3
+ .gl-w-half.gl-xs-w-full.gl-ml-auto.gl-mr-auto.bar
+ = yield
= render 'devise/shared/footer', footer_message: footer_message
- else