When i minimize my app, appear white space, i want to change that color, i dont like white, i want black
there are in the bottom a blank space
The blank space section it does not belong to my body or header or my footer, my question is, how can i change the color?
CodePudding user response:
I guess there is no option to track zoom changes in css. You can workaround the problem by setting
body {
background-color: #000;
min-height: 100vh;
}
CodePudding user response:
You can try to give this background to body's itself. I think it will be enough. But if you will show your code, you will get better answers.