fix: missing light mode colours for delete workspace modal
This commit is contained in:
@@ -36,10 +36,10 @@ const Button = ({
|
|||||||
variant === "secondary" &&
|
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",
|
"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" &&
|
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" &&
|
variant === "ghost" &&
|
||||||
"bg-none text-light-1000 shadow-none hover:bg-light-300 dark:text-dark-1000 dark:hover:bg-dark-200",
|
"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 = (
|
const content = (
|
||||||
|
|||||||
@@ -77,7 +77,10 @@ export function DeleteWorkspaceConfirmation() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="ml-3 text-sm leading-6">
|
<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
|
I acknowledge that all of the workspace data will be permanently
|
||||||
deleted and want to proceed.
|
deleted and want to proceed.
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user