Skip to content

Commit 1244702

Browse files
authored
Merge pull request #63 from zevorn/fix/serial-panel-align-v2
fix: serial panel aligns with flash panel without growing
2 parents 7707e84 + 4d99ef1 commit 1244702

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

website/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
}
354354
.flash-layout {
355355
display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
356-
align-items: start; position: relative;
356+
align-items: stretch; position: relative;
357357
}
358358
.flash-panel {
359359
background: var(--bg-card); border: 1px solid var(--border);
@@ -447,7 +447,7 @@
447447
background: #0c0c0c; border: 1px solid var(--border);
448448
border-radius: var(--radius); overflow: hidden;
449449
display: flex; flex-direction: column;
450-
height: 480px;
450+
min-height: 0;
451451
}
452452
.serial-titlebar {
453453
display: flex; align-items: center; justify-content: space-between;
@@ -506,7 +506,7 @@
506506
z-index: 10; border-radius: var(--radius);
507507
}
508508
.serial-panel.expanded .serial-output {
509-
min-height: 0; flex: 1;
509+
flex: 1;
510510
}
511511
.serial-msg-success { color: #4ade80; }
512512
.serial-msg-error { color: #f87171; }

0 commit comments

Comments
 (0)