Skip to content

Commit 4fa5948

Browse files
committed
style(ui): fix borders in dark mode
1 parent 782d826 commit 4fa5948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/BackupItem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const BackupItem = ({
99
select: (moonlight: MoonlightBackup) => void;
1010
}) => {
1111
return (
12-
<div className="grid grid-flow-col grid-cols-[repeat(2,_minmax(0,_1fr)),min-content] gap-x-4 rounded border px-2 py-1">
12+
<div className="grid grid-flow-col grid-cols-[repeat(2,_minmax(0,_1fr)),min-content] gap-x-4 rounded border border-zinc-200 p-3 px-2 py-1 dark:border-zinc-700">
1313
<span className="self-center">{moonlight.name}</span>
1414
<span className="self-center">{new Date(moonlight.lastBackup).toLocaleString()}</span>
1515
<Button variant="secondary" onPress={() => select(moonlight)}>

0 commit comments

Comments
 (0)