Home > database >  How can i change the color when my app is very small in zoom?
How can i change the color when my app is very small in zoom?

Time:04-23

When i minimize my app, appear white space, i want to change that color, i dont like white, i want black

please see this gif: enter image description here

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.

  • Related