After clicking the button, my full screen display looks like this:
|---------------|
|---------------|
|---------------|
| | horizontal scroll
| |
| |
| |
The issue is that it only takes up 80% of the screen, even though there is enough data to fill the entire screen.
This is my CSS class:
.full-screen {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
min-height: 100%;
z-index: 700;
background: white;
}
Any advice would be appreciated.