mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-01 20:04:00 -04:00
49f146494e
* (#559) Adjust getRegion implementation It’ll now cut off window regions at the borders of the main screen, avoiding errors due to out of bounds regions * (#559) Moved window e2e test into dedicated e2e subpackage
20 lines
251 B
CSS
20 lines
251 B
CSS
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
#content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
#exit {
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
background: darkblue;
|
|
}
|