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

40 lines
997 B

  1. .optionHolder {
  2. ion-list {
  3. ion-radio-group {
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-around;
  8. height: 40vh;
  9. .options {
  10. width: 99%;
  11. margin: 0 auto;
  12. --background: white;
  13. border: 1px solid #DBDBDB;
  14. border-radius: 25px;
  15. ion-label {
  16. --color: #626262;
  17. font-size: 1.2rem !important;
  18. font-weight: 200;
  19. }
  20. ion-radio {
  21. --color-checked: var(--primary-button-color);
  22. margin-left: 1.5rem;
  23. }
  24. }
  25. .highlighted {
  26. box-shadow: 0px 0px 10px #00000029;
  27. ion-radio {
  28. --color: var(--primary-button-color);
  29. }
  30. }
  31. }
  32. }
  33. }