_footer.scss 943 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .page-dashboard .footer {
  2. display: none;
  3. }
  4. .footer {
  5. color: $footer-link-color;
  6. padding: 1rem 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. .is-react .footer {
  35. display: none;
  36. }
  37. .is-react .custom-scrollbar .footer {
  38. display: block;
  39. }
  40. // Keeping footer inside the graphic on Login screen
  41. .login-page {
  42. .footer {
  43. bottom: $spacer;
  44. position: absolute;
  45. padding: 1rem 0 1rem 0;
  46. }
  47. }
  48. @include media-breakpoint-up(sm) {
  49. .login-page {
  50. .footer {
  51. padding: 5rem 0 1rem 0;
  52. }
  53. }
  54. }