mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-13 11:45:32 +02:00
14 lines
214 B
CSS
14 lines
214 B
CSS
body {
|
|
background-color: #333333;
|
|
color: white;
|
|
font-family: sans-serif;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
#grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
height: 100%;
|
|
align-content: center;
|
|
}
|