grafana/public/sass/components/_footer.scss

65 lines
943 B
SCSS
Raw Normal View History

.page-dashboard .footer {
2017-12-19 09:22:41 -06:00
display: none;
2016-05-23 11:46:13 -05:00
}
.footer {
color: $footer-link-color;
padding: 1rem 0 1rem 0;
2017-11-30 04:31:38 -06:00
font-size: $font-size-sm;
position: relative;
2017-12-19 09:22:41 -06:00
width: 98%; /* was causing horiz scrollbars - need to examine */
a {
color: $footer-link-color;
&:hover {
color: $footer-link-hover;
}
}
ul {
list-style: none;
}
li {
display: inline-block;
padding-right: 2px;
&::after {
2018-06-26 07:34:06 -05:00
content: ' | ';
padding-left: 2px;
}
}
li:last-child {
&::after {
padding-left: 0;
2018-06-26 07:34:06 -05:00
content: '';
}
}
}
.is-react .footer {
display: none;
}
.is-react .custom-scrollbar .footer {
display: block;
}
// Keeping footer inside the graphic on Login screen
.login-page {
.footer {
bottom: $spacer;
position: absolute;
2018-06-26 07:34:06 -05:00
padding: 1rem 0 1rem 0;
}
}
2018-10-31 15:44:22 -05:00
@include media-breakpoint-up(sm) {
2018-06-28 07:02:42 -05:00
.login-page {
.footer {
padding: 5rem 0 1rem 0;
}
}
}