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