Skip to content

Commit efa2e08

Browse files
committed
Add labels for each split type
1 parent d796ecb commit efa2e08

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/app/converter.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,18 @@ export function Converter() {
8484
<div className="min-h-0 flex-1">
8585
<div className="flex h-full min-h-0 w-full items-stretch justify-center gap-4">
8686
{fileText && (
87-
<AppSplitPreview text={fileText} className="h-full flex-1" />
87+
<div className="flex min-h-0 flex-1 flex-col">
88+
<span className="mb-2 text-center font-semibold">LiveSplit:</span>
89+
<AppSplitPreview text={fileText} className="h-full flex-1" />
90+
</div>
8891
)}
8992
{result && (
90-
<AppSplitPreview text={result} className="h-full flex-1" />
93+
<div className="flex min-h-0 flex-1 flex-col">
94+
<span className="mb-2 text-center font-semibold">
95+
LibreSplit:
96+
</span>
97+
<AppSplitPreview text={result} className="h-full flex-1" />
98+
</div>
9199
)}
92100
</div>
93101
</div>

0 commit comments

Comments
 (0)