feat(SerialConsolePage): enhance terminal layout with background icon and improved styling
This commit is contained in:
parent
3705e72b6d
commit
ae6acc3bee
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user