This repository was archived by the owner on May 2, 2020. It is now read-only.
This repository was archived by the owner on May 2, 2020. It is now read-only.
Option to change body background color with phone frame / limited application size #679
Closed
Description
I am trying to create a fixed width desktop app with the framework and have set the following options:
"iconBackgroundColor": "#eeeeee",
"limitApplicationWidth": 1200,
"limitApplicationHeight": "100%",
"showPhoneFrameOnDesktop": false,
index.ejs in the node_modules/... folder has this but the color does not seem to change.
<body style="background: <%= htmlWebpackPlugin.options.iconBackgroundColor %>">
The body is styled as follows when I run the dev server.
<body style="background: rgb(51, 51, 51);" class="limitWidth theme-indigo">
Also noticed that 'limitWidth/limtHeight' has the style
.limitHeight, .limitWidth {
background: #333333;
}
Am I missing something?