Footer.module.scss 303 B

123456789101112131415161718
  1. @import "styles/_variables.scss";
  2. .footer {
  3. padding: 0 1rem;
  4. background-color: $silver;
  5. height: 50px;
  6. display: flex;
  7. align-items: center;
  8. p {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. font-weight: 500;
  13. gap: 10px;
  14. text-transform: uppercase;
  15. }
  16. }