grafana/public/sass/components/_footer.scss

41 lines
587 B
SCSS
Raw Normal View History

2016-05-23 11:46:13 -05:00
.page-dashboard footer {
display: none;
}
2016-05-20 14:58:14 -05:00
footer {
font-size: 75%;
width: 98%; /* was causing horiz scrollbars - need to examine */
2016-05-20 14:58:14 -05:00
a {
color: $gray-1;
}
ul {
list-style: none;
}
li { display: inline-block;
padding-right: 2px;
&:after {
content: ' | ';
padding-left: 2px;
color: $gray-1;
}
}
li:last-child {
&:after {
padding-left: 0;
content: '';
}
}
2016-05-20 14:58:14 -05:00
}
2016-02-15 08:27:41 -06:00
.grafana-version-info {
position: absolute;
bottom: 2px;
left: 3px;
2016-02-19 05:26:39 -06:00
color: darken($gray-1, 25%);
a { color: darken($gray-1, 25%); }
2016-02-15 08:27:41 -06:00
}
.footer {
padding: 5rem 0 1rem 0;
}