_footer.scss 555 B

1234567891011121314151617181920212223242526272829303132333435363738
  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-xs;
  8. width: 98%; /* was causing horiz scrollbars - need to examine */
  9. a {
  10. color: $footer-link-color;
  11. &:hover {
  12. color: $footer-link-hover;
  13. }
  14. }
  15. ul {
  16. list-style: none;
  17. }
  18. li {
  19. display: inline-block;
  20. padding-right: 2px;
  21. &::after {
  22. content: ' | ';
  23. padding-left: 2px;
  24. }
  25. }
  26. li:last-child {
  27. &::after {
  28. padding-left: 0;
  29. content: '';
  30. }
  31. }
  32. }