blob: d632cbc277b510177d281a3d6a61fcb5b508c237 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
'use strict'
exports.decorateBrowserOptions = config => {
return Object.assign({}, config, {
titleBarStyle: '',
frame: false,
});
}
exports.decorateConfig = config => {
return Object.assign({}, config, {
css: `
${config.css || ''}
.tabs_borderShim { display: none; }
.tabs_list { margin-left: -1px; }
.tabs_list { display: none; }
//.header_header { display: none; }
.terms_terms { margin-top: 0px; }
`
})
}
|