Commit e7e0fd88 authored by Kirill Smelkov's avatar Kirill Smelkov

NXD Show "about" footer on every page

We show in small font size the same info that is shown on sign_in page:

    "GitLab Nexedi Edition", "About GitLab" and "About Nexedi"

This is good to have and hereby-introduced about-footer area will be
also used in the next patch for ICP too.
parent 2f56bebf
......@@ -102,6 +102,7 @@
}
}
// TODO adjust .page-with-sidebar .about-footer
@media (max-width: $screen-sm-max) {
.page-with-sidebar .content-wrapper {
padding: 0;
......
......@@ -21,6 +21,7 @@
min-height: 100vh;
width: 100%;
padding: 20px;
padding-bottom: 0px; // bottom is for .about-footer
background: #EAEBEC;
.container-fluid {
......@@ -36,6 +37,16 @@
}
}
.about-footer {
text-align: center;
padding: 10px; // = content-wrapper.padding / 2
a {
margin-left: 3px;
margin-right: 3px;
}
font-size: small
}
.nav-sidebar {
margin-top: 14 + $header-height;
margin-bottom: 100px;
......
......@@ -28,3 +28,9 @@
.content
.clearfix
= yield
.about-footer
= link_to "GitLab Nexedi Edition", "https://lab.nexedi.com/nexedi/slapos/blob/master/software/gitlab/software.cfg"
|
= link_to "About GitLab", "https://about.gitlab.com/"
|
= link_to "About Nexedi", "http://nexedi.com/"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment