Nav.module.css 311 B

123456789101112131415161718
  1. .nav{
  2. height: 75px;
  3. padding: 10px;
  4. background: #2e2d2d;
  5. color: #165CA1;
  6. align-items: center;
  7. justify-content: flex-start;
  8. }
  9. .nav ul{
  10. justify-content: center;
  11. align-items: right;
  12. list-style: none;
  13. }
  14. .nav ul li a {
  15. height: 100px;
  16. display: flex;
  17. margin: 10px 20px;
  18. }