Don't hardcode grid cell sizes

This commit is contained in:
Simon Ser 2020-04-25 20:10:11 +02:00
parent b6ab5823b8
commit b612c48fb2
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -7,8 +7,8 @@ html, body {
body {
display: grid;
grid-template-rows: auto 40px;
grid-template-columns: 200px auto;
grid-template-rows: auto max-content;
grid-template-columns: max-content auto;
font-family: monospace;
}
@ -38,7 +38,7 @@ body {
}
#composer input {
display: block;
height: 100%;
height: 35px;
width: 100%;
box-sizing: border-box;
padding: 10px;