1
- import { css } from " lit" ;
1
+ import { css } from ' lit' ;
2
2
3
3
export default css `
4
4
: host {
@@ -7,7 +7,7 @@ export default css`
7
7
height: 144px;
8
8
overflow: hidden;
9
9
overflow- y: auto ;
10
- - ms- overflow- style: none; /* IE and Edge */
10
+ - ms- overflow- style: none; /* IE and Edge */
11
11
scrollbar- width: none; /* Firefox */
12
12
}
13
13
@@ -17,15 +17,28 @@ export default css`
17
17
}
18
18
19
19
.pinwheel > div {
20
- padding : var (--tap-pinwheel-spacing-0 , var (--tap-sys-spacing-0 )) var (--tap-pinwheel-spacing-6 , var (--tap-sys-spacing-6 ));
20
+ padding : var (--tap-pinwheel-spacing-0 , var (--tap-sys-spacing-0 ))
21
+ var (--tap-pinwheel-spacing-6 , var (--tap-sys-spacing-6 ));
21
22
/* FIXME: we dont have sizing tokens yet */
22
23
height : 48px ;
23
24
font : inherit;
24
25
font-family : var (--tap-font-family , var (--tap-sys-font-family ));
25
- line-height : var (--tap-pinwheel-typography-body-md-height , var (--tap-sys-typography-body-md-height ));
26
- font-size : var (--tap-pinwheel-typography-body-md-size , var (--tap-sys-typography-body-md-size ));
27
- font-weight : var (--tap-pinwheel-typography-body-md-weight , var (--tap-sys-typography-body-md-weight ));
28
- color : var (--tap-pinwheel-color-content-tertiary , var (--tap-sys-color-content-tertiary ));
26
+ line-height : var (
27
+ --tap-pinwheel-typography-body-md-height ,
28
+ var (--tap-sys-typography-body-md-height )
29
+ );
30
+ font-size : var (
31
+ --tap-pinwheel-typography-body-md-size ,
32
+ var (--tap-sys-typography-body-md-size )
33
+ );
34
+ font-weight : var (
35
+ --tap-pinwheel-typography-body-md-weight ,
36
+ var (--tap-sys-typography-body-md-weight )
37
+ );
38
+ color : var (
39
+ --tap-pinwheel-color-content-tertiary ,
40
+ var (--tap-sys-color-content-tertiary )
41
+ );
29
42
}
30
43
31
44
.pinwheel div : first-child {
@@ -37,9 +50,21 @@ export default css`
37
50
}
38
51
39
52
.pinwheel .active {
40
- line-height : var (--tap-pinwheel-typography-label-md-height , var (--tap-sys-typography-label-md-height ));
41
- font-size : var (--tap-pinwheel-typography-label-md-size , var (--tap-sys-typography-label-md-size ));
42
- font-weight : var (--tap-pinwheel-typography-label-md-weight , var (--tap-sys-typography-label-md-weight ));
43
- color : var (--tap-pinwheel-color-content-primary , var (--tap-sys-color-content-primary ));
53
+ line-height : var (
54
+ --tap-pinwheel-typography-label-md-height ,
55
+ var (--tap-sys-typography-label-md-height )
56
+ );
57
+ font-size : var (
58
+ --tap-pinwheel-typography-label-md-size ,
59
+ var (--tap-sys-typography-label-md-size )
60
+ );
61
+ font-weight : var (
62
+ --tap-pinwheel-typography-label-md-weight ,
63
+ var (--tap-sys-typography-label-md-weight )
64
+ );
65
+ color : var (
66
+ --tap-pinwheel-color-content-primary ,
67
+ var (--tap-sys-color-content-primary )
68
+ );
44
69
}
45
70
` ;
0 commit comments