diff options
author | Phil Hughes <me@iamphill.com> | 2017-06-22 15:47:50 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-06-23 16:14:49 +0100 |
commit | 974f9fb135dd5ce9897991157f8f8c779043baf6 (patch) | |
tree | 5de6fa080b03a7e1bc9c5f75c9afa51cdc5de18e /app/views/profiles/keys | |
parent | 523eaace0211f134bf24286ededa3f09b05b1d5f (diff) | |
download | gitlab-ce-974f9fb135dd5ce9897991157f8f8c779043baf6.tar.gz |
Added limited width to profile settingsprofile-settings-width
Closes #20918
Diffstat (limited to 'app/views/profiles/keys')
-rw-r--r-- | app/views/profiles/keys/index.html.haml | 5 | ||||
-rw-r--r-- | app/views/profiles/keys/show.html.haml | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/app/views/profiles/keys/index.html.haml b/app/views/profiles/keys/index.html.haml index 71b224a413b..5f7b41cf30e 100644 --- a/app/views/profiles/keys/index.html.haml +++ b/app/views/profiles/keys/index.html.haml @@ -1,13 +1,14 @@ - page_title "SSH Keys" +- @content_class = "limit-container-width" unless fluid_layout = render 'profiles/head' .row.prepend-top-default - .col-lg-3.profile-settings-sidebar + .col-lg-4.profile-settings-sidebar %h4.prepend-top-0 = page_title %p SSH keys allow you to establish a secure connection between your computer and GitLab. - .col-lg-9 + .col-lg-8 %h5.prepend-top-0 Add an SSH key %p.profile-settings-content diff --git a/app/views/profiles/keys/show.html.haml b/app/views/profiles/keys/show.html.haml index 6283ceebf10..172c0450381 100644 --- a/app/views/profiles/keys/show.html.haml +++ b/app/views/profiles/keys/show.html.haml @@ -1,3 +1,4 @@ - page_title @key.title, "SSH Keys" +- @content_class = "limit-container-width" unless fluid_layout = render 'profiles/head' = render "key_details" |