-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
54 lines (52 loc) · 1017 Bytes
/
index.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
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
css: `
${config.css || ''}
body {
background-color: dimgray;
}
.header_header {
background-color: #000;
}
.notifications_view {
background-color: #000;
}
.tabs_nav {
width: 120px;
line-height: 1.9;
}
.tabs_hiddenNav {
display: block;
}
.tabs_list {
max-height: 22px;
flex-flow: column;
}
.tab_text {
height: 22px;
}
.tab_active {
border-bottom: 1px solid;
background-color: #494949;
font-weight: bold;
}
.tab_tab {
border-bottom: 1px solid;
}
.tab_icon {
top: 4px;
right: 1px;
}
.tab_textInner {
left: 4px;
}
.terms_terms {
left: 120px;
background-color: #000;
}
.terms_termsShifted {
margin-top: 34px;
}
`,
});
};