0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-22 07:27:51 +00:00

fix it damn it

This commit is contained in:
Víctor Losada Hernández
2025-05-22 22:35:26 +02:00
parent 3624fcef0f
commit 03527a1f95

View File

@@ -5,7 +5,7 @@
height : 100%; height : 100%;
container : editor / inline-size; container : editor / inline-size;
.codeEditor { .codeEditor {
height : 100%; height : calc(100% - 25px);
.CodeMirror { height : 100%; } .CodeMirror { height : 100%; }
.pageLine, .snippetLine { .pageLine, .snippetLine {
background : #33333328; background : #33333328;
@@ -111,6 +111,6 @@
} }
@container editor (width < 683px) { @container editor (width < 683px) {
.editor .codeEditor .CodeMirror { height : calc(100% - 51px);} .editor .codeEditor { height : calc(100% - 51px);}
.homePage .editor .codeEditor .CodeMirror { height : calc(100% - 25px);} .homePage .editor .codeEditor { height : calc(100% - 25px);}
} }