fix canvas on big screens

This commit is contained in:
Simon From Jakobsen 2025-09-29 15:48:41 +02:00
parent c21497bad1
commit a24cc0b7a6

View File

@ -29,10 +29,17 @@ main {
}
section {
border-radius: 8px;
width: 100%;
flex: 1;
display: flex;
flex-direction: column;
background-color: black;
}
section canvas {
margin-left: auto;
margin-right: auto;
}
section *:last-child {
@ -81,11 +88,17 @@ div#buttons > * {
background-color: black;
margin: 0;
width: 100%;
overflow-wrap: break-word;
word-break: break-all;
font-size: 1rem;
padding: 4px 8px;
flex: 1;
}
#console pre {
width: 100%;
white-space: pre-wrap;
}
#console input {
width: 100%;
margin: 0;