UNPKG

851 BSCSSView Raw
1.gift-or-not {
2
3 .gift-or-not__option {
4 margin: $spacing-unit 0;
5 }
6
7 .gift-or-not__option-icon {
8 position: absolute;
9 top: 1px;
10
11 &.gift-or-not__option-icon--gift {
12 @include oIconsGetIcon('gift', #c0b0a4, 23);
13 }
14
15 &.gift-or-not__option-icon--non-gift {
16 @include oIconsGetIcon('mail', #c0b0a4, 23);
17 }
18 }
19
20 .gift-or-not__label.o-forms-label {
21 margin-right: 0; // overrides o-forms
22 }
23
24 .gift-or-not__option-text {
25 position: relative;
26 padding-left: 35px;
27 font-size: 16px;
28 line-height: 18px;
29 }
30
31 // the UX would like just the label icon faded out, leaving the label text alone
32 .o-forms-radio:disabled + .o-forms-label {
33 opacity: 1;
34 .gift-or-not__option-icon {
35 opacity: 0.4;
36 }
37 }
38
39 .gift-or-not__gift-note {
40 margin-top: 2px;
41 font-size: 13px;
42 }
43
44 .gift-or-not__gift-count {
45 font-weight: 600; // semi bold
46 }
47
48}