fix: anchor tile preview to bottom so newest terminal content is visible

Previously the <pre> snapshot floated to the top of .tile-body — when
content overflowed, the oldest lines showed and newest were clipped.
Now .tile-body pre is position:absolute;bottom:0 so overflow clips
from the top and the lower-left corner (newest content) is always shown.
This commit is contained in:
Brian Krabach
2026-03-27 15:17:07 -07:00
parent 8234e2ec05
commit 50007a6d2a
2 changed files with 17 additions and 0 deletions
+7
View File
@@ -214,6 +214,13 @@ body {
position: relative;
}
.tile-body pre {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.tile-pre {
position: absolute;
inset: 0;