fix export button colors (#10903)

This commit is contained in:
Josh Hawkins
2024-04-09 08:49:14 -05:00
committed by GitHub
parent 8163c036ef
commit 9281093740

View File

@@ -17,7 +17,7 @@ export default function SaveExportOverlay({
return (
<div className={className}>
<div
className={`flex justify-center px-2 gap-2 items-center pointer-events-auto rounded-lg *:text-white ${
className={`flex justify-center px-2 gap-2 items-center pointer-events-auto rounded-lg ${
show ? "animate-in slide-in-from-top duration-500" : "invisible"
} text-center mt-5 mx-auto`}
>
@@ -31,7 +31,7 @@ export default function SaveExportOverlay({
Save Export
</Button>
<Button
className="flex items-center gap-1"
className="flex items-center gap-1 text-primary-foreground"
size="sm"
variant="secondary"
onClick={onCancel}