Angular job portal app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Header.module.scss 494 B

1234567891011121314151617181920212223242526
  1. ion-header {
  2. background-color: black;
  3. height: 12vh;
  4. .header {
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. height: 12vh;
  9. margin-left: 2rem;
  10. margin-right: 1rem;
  11. ion-icon {
  12. width: 33vw;
  13. height: 5vh;
  14. }
  15. .profile {
  16. background-color: white;
  17. width: 3.5rem;
  18. height: 3.5rem;
  19. border-radius: 50%;
  20. }
  21. }
  22. }