Angular job portal app
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Header.module.scss 525 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.2rem;
  18. height: 3.2rem;
  19. border-radius: 50%;
  20. margin-right: 1rem;
  21. }
  22. }
  23. }