header.scss 473 B

1234567891011121314151617181920212223
  1. header {
  2. width: 100%;
  3. border-bottom: 1px solid #ccc;
  4. .app-header {
  5. width: 1200px;
  6. margin: 0 auto;
  7. display: flex;
  8. justify-content: space-between;
  9. height: 80px;
  10. line-height: 80px;
  11. .app-header-left {
  12. display: flex;
  13. align-items: center;
  14. }
  15. .app-header-right {
  16. font-size: 16px;
  17. ul {
  18. display: flex;
  19. }
  20. }
  21. }
  22. }