mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
71 lines
1006 B
SCSS
71 lines
1006 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-down(md) {
|
|
.login-page {
|
|
.footer {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|