feat(SerialConsolePage): enhance terminal layout with background icon and improved styling

This commit is contained in:
Jaime Idolpx 2026-06-11 00:33:17 -04:00
parent 3705e72b6d
commit ae6acc3bee

View File

@ -137,10 +137,16 @@ export default function SerialConsolePage({ onBack }: Props) {
{/* Terminal */} {/* Terminal */}
<div <div
ref={containerRef} className="flex-1 min-h-0 relative overflow-hidden"
className="flex-1 min-h-0"
style={{ paddingBottom: 'env(safe-area-inset-bottom)' }} style={{ paddingBottom: 'env(safe-area-inset-bottom)' }}
/> >
<div ref={containerRef} className="absolute inset-0" />
<img
src="assets/icon.svg"
className="absolute inset-0 m-auto w-64 h-64 pointer-events-none select-none opacity-40 z-10"
aria-hidden="true"
/>
</div>
</div> </div>
); );
} }