use px widths

This commit is contained in:
Quinten Kock 2025-08-12 23:24:15 +02:00
parent 6c0d7a4804
commit eee5e46b23
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ body {
/* padding: 0; */
display: grid;
grid-template-rows: auto minmax(0, 1fr);
grid-template-columns: 1fr minmax(0, 4fr);
grid-template-columns: auto minmax(0, 4fr);
}
body > header {
@ -37,7 +37,7 @@ aside {
min-width: 120px;
max-width: 50vw;
width: 20wv;
width: 200px;
}
#editorGrid {

View File

@ -47,7 +47,7 @@ const fixedHeightEditor = EditorView.theme({
minHeight: "0px",
resize: "horizontal",
overflow: "auto",
width: "30vw",
width: "400px",
minWidth: "8em",
},
".cm-scroller": { overflow: "auto" }