Prevent white flash when running application

We accomplish this by setting the background color of the `html` element
to match the greyish background color of the application.
This commit is contained in:
Juan Cruz Viotti 2015-12-15 09:57:44 -04:00
parent 2cb79090d1
commit 186d3847fe
2 changed files with 8 additions and 0 deletions

View File

@ -5938,6 +5938,9 @@ body {
.space-right-tiny { .space-right-tiny {
margin-right: 5px; } margin-right: 5px; }
html {
background-color: #535760; }
hero-badge .badge { hero-badge .badge {
background-color: #535760; } background-color: #535760; }

View File

@ -39,6 +39,11 @@ $btn-padding: 10px;
@import "./modules/space"; @import "./modules/space";
// Prevent white flash when running application
html {
background-color: $body-bg;
}
hero-badge .badge { hero-badge .badge {
background-color: $body-bg; background-color: $body-bg;
} }