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;
|
2018-11-22 05:51:10 -06:00
|
|
|
padding: 1rem 0 1rem 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 2px;
|
2016-06-20 03:37:47 -05:00
|
|
|
&::after {
|
2018-06-26 07:34:06 -05:00
|
|
|
content: ' | ';
|
2016-05-24 01:11:28 -05:00
|
|
|
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;
|
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
|
|
|
|
2019-01-14 09:05:49 -06:00
|
|
|
.is-react .footer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-02-21 02:41:53 -06:00
|
|
|
.is-react .custom-scrollbar .footer {
|
2019-01-14 09:05:49 -06:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-11-22 05:51:10 -06:00
|
|
|
// Keeping footer inside the graphic on Login screen
|
2017-12-15 06:03:07 -06:00
|
|
|
.login-page {
|
|
|
|
.footer {
|
2018-10-31 15:40:58 -05:00
|
|
|
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;
|
|
|
|
}
|
2017-12-15 06:03:07 -06:00
|
|
|
}
|
|
|
|
}
|