grafana/public/sass/components/_footer.scss
Torkel Ödegaard 4fabade35c
v8: Update login page design (#33923)
* Theme: Initial draft of dark login page

* update

* Updated login background

* Updates

* anim test

* Anim tweak

* Animate login box

* Updates

* Updating login page

* Improve footer readability on login page

* Fix sign up button
2021-05-11 16:34:44 +02:00

71 lines
1018 B
SCSS

.page-dashboard .footer {
display: none;
}
.footer {
color: $footer-link-color;
padding: $space-md 0 $space-md 0;
font-size: $font-size-sm;
position: relative;
width: 98%; /* was causing horiz scrollbars - need to examine */
a {
color: $footer-link-color;
&:hover {
color: $footer-link-hover;
}
i {
display: inline-block;
padding-right: $space-xxs;
}
}
ul {
list-style: none;
}
li {
display: inline-block;
&::after {
content: ' | ';
padding: 0 $space-sm;
}
}
li:last-child {
&::after {
padding-left: 0;
content: '';
}
}
}
.login-page {
.footer {
display: block;
bottom: $spacer;
position: absolute;
padding: $space-md 0 $space-md 0;
color: $text-color;
a {
color: $text-color;
&:hover {
color: $text-color-strong;
}
}
}
}
@include media-breakpoint-up(sm) {
.login-page {
.footer {
padding: 70px 0 $space-md 0;
}
}
}