| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .page-dashboard .footer {
- display: none;
- }
- .footer {
- color: $footer-link-color;
- padding: 5rem 0 1rem 0;
- font-size: $font-size-sm;
- position: relative;
- 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: "";
- }
- }
- }
- .login-page {
- .footer {
- position: absolute;
- bottom: $spacer;
- }
- }
|