-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyleguide.styles.config.js
56 lines (56 loc) · 1.27 KB
/
styleguide.styles.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
Para: {
para: {
font: 'var(--mds-type-content)',
marginBottom: 'var(--spacing-x-large)',
},
},
Heading: {
heading1: {
font: 'var(--mds-type-page-title)',
marginBottom: 'var(--spacing-x-large)',
},
heading2: {
font: 'var(--mds-type-subhead-1)',
marginBottom: 'var(--spacing-x-large)',
},
heading3: {
font: 'var(--mds-type-subhead-2)',
marginBottom: 'var(--spacing-x-large)',
},
heading4: {
font: 'var(--mds-type-subhead-3)',
marginBottom: 'var(--spacing-x-large)',
},
heading5: {
font: 'var(--mds-type-subhead-3)',
marginBottom: 'var(--spacing-x-large)',
},
heading6: {
font: 'var(--mds-type-subhead-3)',
marginBottom: 'var(--spacing-x-large)',
},
},
List: {
li: {
font: 'var(--mds-type-content)',
},
list: {
marginBottom: '0px', // Regular `<ul>` which should always be nested.
},
ordered: {
marginBottom: 'var(--spacing-x-large)',
},
},
ComponentsList: {
item: {
marginRight: 'var(--spacing-small)',
'@global': {
a: {
color: 'var(--mds-grey-87) !important',
font: 'var(--mds-type-content) !important',
},
},
},
},
};