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
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-11 18:37:20 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-11 18:37:20 +0400
commit248b12833c775f39c5b99cd9a6eeb38ec5e54d53 (patch)
tree6f5ce2736f1e18e51d27d83c3ccd881a599d9835 /app
parent8c15fd0014047b2bad478af412d3d8eb54845080 (diff)
Add bottom links for sign-in page so I can get to Public area
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/generic/common.scss4
-rw-r--r--app/views/layouts/devise.html.haml6
2 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/generic/common.scss b/app/assets/stylesheets/generic/common.scss
index b9942b5cb5d..991561cd503 100644
--- a/app/assets/stylesheets/generic/common.scss
+++ b/app/assets/stylesheets/generic/common.scss
@@ -337,3 +337,7 @@ table {
.wiki .highlight, .note-body .highlight {
margin-bottom: 9px;
}
+
+.footer-links a {
+ margin-right: 15px;
+}
diff --git a/app/views/layouts/devise.html.haml b/app/views/layouts/devise.html.haml
index 4080ef745f8..43ee4bbbb4b 100644
--- a/app/views/layouts/devise.html.haml
+++ b/app/views/layouts/devise.html.haml
@@ -18,3 +18,9 @@
= brand_text
.col-md-5
= yield
+ %hr
+ .container
+ .footer-links
+ = link_to "Explore public projects", public_projects_path
+ = link_to "Documentation", "http://doc.gitlab.com/"
+ = link_to "About GitLab", "https://about.gitlab.com/"