_footer.scss 399 B

1234567891011121314151617181920
  1. footer {
  2. text-align: center;
  3. @include bg-secondary;
  4. height: 4em;
  5. div {
  6. width: 80%;
  7. margin-left: auto;
  8. margin-right: auto;
  9. display: flex;
  10. flex-direction: row;
  11. flex-wrap: nowrap;
  12. justify-content: space-around;
  13. align-items: center;
  14. align-content: center;
  15. a {
  16. color: inherit;
  17. }
  18. }
  19. }