2016-05-24 01:11:28 -05:00
|
|
|
.page-dashboard .footer {
|
2017-12-19 09:22:41 -06:00
|
|
|
display: none;
|
2016-05-23 11:46:13 -05:00
|
|
|
}
|
|
|
|
|
2016-05-03 02:00:58 -05:00
|
|
|
.footer {
|
2016-05-24 01:11:28 -05:00
|
|
|
color: $footer-link-color;
|
2019-03-28 05:14:30 -05:00
|
|
|
padding: $space-md 0 $space-md 0;
|
2017-11-30 04:31:38 -06:00
|
|
|
font-size: $font-size-sm;
|
2017-12-15 06:03:07 -06:00
|
|
|
position: relative;
|
2017-12-19 09:22:41 -06:00
|
|
|
width: 98%; /* was causing horiz scrollbars - need to examine */
|
2016-05-24 01:11:28 -05:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $footer-link-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $footer-link-hover;
|
2022-09-02 05:05:27 -05:00
|
|
|
text-decoration: underline;
|
2016-05-24 01:11:28 -05:00
|
|
|
}
|
2020-01-09 04:25:52 -06:00
|
|
|
|
|
|
|
i {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: $space-xxs;
|
|
|
|
}
|
2016-05-24 01:11:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2020-01-09 04:25:52 -06:00
|
|
|
|
2016-06-20 03:37:47 -05:00
|
|
|
&::after {
|
2018-06-26 07:34:06 -05:00
|
|
|
content: ' | ';
|
2020-01-09 04:25:52 -06:00
|
|
|
padding: 0 $space-sm;
|
2016-05-24 01:11:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li:last-child {
|
2016-06-20 03:37:47 -05:00
|
|
|
&::after {
|
2016-05-24 01:11:28 -05:00
|
|
|
padding-left: 0;
|
2018-06-26 07:34:06 -05:00
|
|
|
content: '';
|
2016-05-24 01:11:28 -05:00
|
|
|
}
|
|
|
|
}
|
2016-05-03 02:00:58 -05:00
|
|
|
}
|
2017-12-15 06:03:07 -06:00
|
|
|
|
|
|
|
.login-page {
|
|
|
|
.footer {
|
2019-09-17 00:27:21 -05:00
|
|
|
display: block;
|
2019-03-28 05:14:30 -05:00
|
|
|
padding: $space-md 0 $space-md 0;
|
2021-05-11 09:34:44 -05:00
|
|
|
color: $text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $text-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $text-color-strong;
|
|
|
|
}
|
|
|
|
}
|
2018-06-26 07:34:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-11 23:37:18 -05:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-06-28 07:02:42 -05:00
|
|
|
.login-page {
|
|
|
|
.footer {
|
2021-05-11 23:37:18 -05:00
|
|
|
display: none;
|
2018-06-28 07:02:42 -05:00
|
|
|
}
|
2017-12-15 06:03:07 -06:00
|
|
|
}
|
|
|
|
}
|