_footer.scss 655 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .page-dashboard .footer {
  2. display: none;
  3. }
  4. .footer {
  5. color: $footer-link-color;
  6. padding: 5rem 0 1rem 0;
  7. font-size: $font-size-sm;
  8. position: relative;
  9. width: 98%; /* was causing horiz scrollbars - need to examine */
  10. a {
  11. color: $footer-link-color;
  12. &:hover {
  13. color: $footer-link-hover;
  14. }
  15. }
  16. ul {
  17. list-style: none;
  18. }
  19. li {
  20. display: inline-block;
  21. padding-right: 2px;
  22. &::after {
  23. content: " | ";
  24. padding-left: 2px;
  25. }
  26. }
  27. li:last-child {
  28. &::after {
  29. padding-left: 0;
  30. content: "";
  31. }
  32. }
  33. }
  34. .login-page {
  35. .footer {
  36. position: absolute;
  37. bottom: $spacer;
  38. }
  39. }