mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-28 10:16:40 -05:00
Don't hardcode grid cell sizes
This commit is contained in:
parent
b6ab5823b8
commit
b612c48fb2
1 changed files with 3 additions and 3 deletions
|
@ -7,8 +7,8 @@ html, body {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: auto 40px;
|
grid-template-rows: auto max-content;
|
||||||
grid-template-columns: 200px auto;
|
grid-template-columns: max-content auto;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ body {
|
||||||
}
|
}
|
||||||
#composer input {
|
#composer input {
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 35px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
Loading…
Reference in a new issue