|
12345678910111213141516171819202122232425262728293031323334353637383940 |
- .optionHolder {
- ion-list {
- ion-radio-group {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- height: 40vh;
-
- .options {
- width: 99%;
- margin: 0 auto;
- --background: white;
- border: 1px solid #DBDBDB;
- border-radius: 25px;
-
- ion-label {
- --color: #626262;
- font-size: 1.2rem !important;
- font-weight: 200;
-
- }
- ion-radio {
- --color-checked: var(--primary-button-color);
- margin-left: 1.5rem;
- }
- }
-
- .highlighted {
- box-shadow: 0px 0px 10px #00000029;
-
- ion-radio {
- --color: var(--primary-button-color);
- }
- }
- }
- }
-
-
- }
|