I added the following code to the global styles.css to have a lightblue background color.
html, body{
background-color: lightblue ;
}
When I refresh the home.component page, I see lightblue screen briefly, then I get the home.component without the lightblue background.
What can cause the background color to be overriden by the home.component. I have no css file for home.component or app.component.
Update: I did, F12, element tab, filter on background. I see where the white color is overriding the style.css background color. It appears that the aws-amplify code is overriding my lightblue background color in styles.css



background-color: lightblue !important;first. The color flashing could be attributed to your styles loading and getting applied first, and Angular's - second.