refactor: use vanilla rendering

This commit is contained in:
2024-01-25 22:11:31 +01:00
parent e89823a0ed
commit 0686611564
8 changed files with 250 additions and 81 deletions

View File

@@ -53,7 +53,7 @@ export const Terminal = (props: {
<div
ref={terminalRef}
className={clsx(
"overflow-hidden rounded-lg border-2 border-borderInactive bg-background bg-opacity-80 text-lg text-color7 text-foreground shadow-window transition-colors duration-[500ms] ease-out hover:border-borderActive hover:duration-[200ms]",
"overflow-hidden whitespace-pre rounded-lg border-2 border-borderInactive bg-background bg-opacity-80 text-lg text-color7 text-foreground shadow-window transition-colors duration-[500ms] ease-out hover:border-borderActive hover:duration-[200ms]",
props.className,
)}
style={{ backdropFilter: "blur(2px)" }}