Angular job portal app
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Options.module.scss 997 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. }