fix: circuit tab full height in playground (override fixed 550px)

This commit is contained in:
a2nr 2026-07-24 14:03:44 +07:00
parent 1b2c51f72f
commit 455d449d1e
1 changed files with 17 additions and 3 deletions

View File

@ -212,10 +212,24 @@
}
.pg-circuit-wrap {
width: 100%;
height: 100%;
overflow: auto;
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
padding: 8px;
overflow: hidden;
}
/* Override CircuitEditor agar fill flex area */
.pg-content :global(.circuit-container) {
flex: 1;
min-height: 0;
}
.pg-content :global(.circuit-wrapper) {
flex: 1;
height: auto;
min-height: 0;
}
.pg-code-wrap {