grafana/public/sass/components/_footer.scss

39 lines
555 B
SCSS
Raw Normal View History

.page-dashboard .footer {
2016-05-23 11:46:13 -05:00
display: none;
}
.footer {
color: $footer-link-color;
padding: 5rem 0 1rem 0;
2017-11-30 04:31:38 -06:00
font-size: $font-size-sm;
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 {
content: ' | ';
padding-left: 2px;
}
}
li:last-child {
&::after {
padding-left: 0;
content: '';
}
}
}