Header.scss 547 B

123456789101112131415161718192021222324252627282930
  1. @import '@/utils/common.scss';
  2. .header{
  3. display: flex;
  4. flex-direction: row;
  5. justify-content: space-between;
  6. height: 48px;
  7. align-items: center;
  8. margin-left: 0px;
  9. margin-right: 0px;
  10. }
  11. .header_title{
  12. color: #fff;
  13. font-size: 48px;
  14. line-height: 48px;
  15. font-weight: 500;
  16. }
  17. .header_action{
  18. color: $fastColor;
  19. font-size: 32px;
  20. line-height: 32px;
  21. font-weight: 500;
  22. padding-top: 12px;
  23. padding-bottom: 4px;
  24. padding-right: 20px;
  25. padding-left: 20px;
  26. // background-color: blue;
  27. }