Reduce window size

This commit is contained in:
Scott E. Graves
2019-06-04 16:53:33 -05:00
parent 7aa17de4be
commit a5e21c8dfc
4 changed files with 5 additions and 5 deletions

View File

@@ -12,8 +12,8 @@ if (!process.versions.hasOwnProperty('electron')) {
if (ipcRenderer) {
ipcRenderer.on(Constants.IPC_Get_Platform_Reply, (event, arg) => {
if (arg.OSPlatform === 'linux') {
let root = document.documentElement;
root.style.setProperty('--default_font_size', '4.8vmin');
const root = document.documentElement;
root.style.setProperty('--default_font_size', '15px');
}
ReactDOM.render(<App platform={arg.Platform} version={packageJson.version}/>, document.getElementById('root'));