14 lines
467 B
SCSS
14 lines
467 B
SCSS
%expanded-single-select label {
|
|
cursor: pointer;
|
|
}
|
|
%expanded-single-select input[type='radio']:checked + *,
|
|
%expanded-single-select input[type='radio']:hover + *,
|
|
%expanded-single-select input[type='radio']:focus + * {
|
|
box-shadow: 0 4px 8px 0 rgba($black, 0.05);
|
|
}
|
|
%expanded-single-select input[type='radio']:checked + *,
|
|
%expanded-single-select input[type='radio']:hover + *,
|
|
%expanded-single-select input[type='radio']:focus + * {
|
|
background-color: $white;
|
|
}
|