UNPKG

1 kBSCSSView Raw
1.email-address {
2
3 margin: $spacing-unit 0 0;
4
5 .email-address__label {
6 display: block;
7 font-size: 16px;
8 margin-bottom: $spacing-unit;
9 }
10
11 .email-address__item {
12 margin: $spacing-unit 0 0;
13 padding: 0; // overrides o-forms
14 }
15
16 .email-address__input-button {
17 display: table;
18 }
19
20 .email-address__input {
21 @include oTypographySans(m);
22 display: table-cell;
23 width: 100%;
24 }
25
26 .email-address__error {
27 @include oTypographySans(m);
28 padding: 5px 0 0;
29 }
30
31 .email-address__button {
32 display: table-cell;
33 vertical-align: top;
34 width: 1%;
35
36 button {
37 padding: 0;
38 margin-left: 12px;
39 border-color: #cec6b9;
40 }
41
42 i {
43 text-indent: 100%;
44 overflow: hidden;
45 }
46
47 .email-address__button--add {
48 @include oIconsGetIcon('plus', #666666, 32);
49 }
50
51 .email-address__button--remove {
52 @include oIconsGetIcon('minus', #666666, 32);
53 }
54
55 }
56
57 .email-address__note {
58 margin-top: 8px;
59 font-size: 14px;
60 }
61
62 .email-address__gift-count {
63 font-weight: 600; // semi bold
64 }
65
66}