fix: missing light mode colours for delete workspace modal

This commit is contained in:
Henry
2025-04-17 14:16:37 +01:00
parent e9211464d6
commit 2bd4051fa5
2 changed files with 6 additions and 3 deletions

View File

@@ -36,10 +36,10 @@ const Button = ({
variant === "secondary" &&
"border-[1px] border-light-600 bg-light-50 text-light-1000 dark:border-dark-600 dark:bg-dark-300 dark:text-dark-1000",
variant === "danger" &&
"dark:text-red-1000 border-[1px] border-red-600 bg-red-50 dark:border-red-600 dark:bg-red-500",
"dark:text-red-1000 border-[1px] border-red-600 bg-red-500 dark:border-red-600 dark:bg-red-500",
variant === "ghost" &&
"bg-none text-light-1000 shadow-none hover:bg-light-300 dark:text-dark-1000 dark:hover:bg-dark-200",
props.disabled && "opacity-50",
props.disabled && "opacity-60",
);
const content = (

View File

@@ -77,7 +77,10 @@ export function DeleteWorkspaceConfirmation() {
/>
</div>
<div className="ml-3 text-sm leading-6">
<p id="comments-description" className="text-dark-1000">
<p
id="comments-description"
className="text-light-900 dark:text-dark-1000"
>
I acknowledge that all of the workspace data will be permanently
deleted and want to proceed.
</p>