blob: 5f56dca93e9b34d2996d07cd50df715ce101164e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
'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; }
.tabs_title { display: none; }
`
})
}
|