Next.js template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

header.css 542B

1234567891011121314151617181920212223242526272829303132
  1. .wrapper {
  2. font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  4. padding: 15px 20px;
  5. display: flex;
  6. align-items: center;
  7. justify-content: space-between;
  8. }
  9. svg {
  10. display: inline-block;
  11. vertical-align: top;
  12. }
  13. h1 {
  14. font-weight: 900;
  15. font-size: 20px;
  16. line-height: 1;
  17. margin: 6px 0 6px 10px;
  18. display: inline-block;
  19. vertical-align: top;
  20. }
  21. button + button {
  22. margin-left: 10px;
  23. }
  24. .welcome {
  25. color: #333;
  26. font-size: 14px;
  27. margin-right: 10px;
  28. }