Set command codeblock to expandable

This commit is contained in:
WBHarry 2026-01-03 02:50:47 +01:00
parent 5c3a2cf060
commit 958dd8b1d0
7 changed files with 58 additions and 17 deletions

View file

@ -545,11 +545,6 @@
font-size: var(--font-size-12);
padding-left: 3px;
}
code-mirror {
width: 100%;
height: 500px;
}
}
.application.setting.dh-style {

View file

@ -21,4 +21,15 @@
}
}
}
.code-mirror-wrapper {
width: 100%;
height: 0;
min-height: 0;
transition: height 0.1s ease-in-out;
&.revealed {
height: 300px;
}
}
}