Skip to content

Commit

Permalink
styling and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lily-de committed Jan 26, 2025
1 parent 80afaac commit 682e19e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/desktop/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom';
import LauncherWindow from './LauncherWindow';
import ChatWindow from './ChatWindow';
import ErrorScreen from './components/ErrorScreen';
import ConfirmationModal from './components/ConfirmationModal';
import { ConfirmationModal } from './components/ui/ConfirmationModal';
import 'react-toastify/dist/ReactToastify.css';
import { ToastContainer } from 'react-toastify';
import { ModelProvider } from './components/settings/models/ModelContext';
Expand Down
2 changes: 1 addition & 1 deletion ui/desktop/src/components/ui/ConfirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function ConfirmationModal({
<Button
variant="primary"
onClick={onConfirm}
className="rounded-full px-4 bg-blue-600 hover:bg-blue-700 dark:bg-blue-600 dark:hover:bg-blue-700"
className="rounded-full px-4 'bg-black dark:bg-white dark:hover:bg-gray-200 text-white dark:!text-black border-borderStandard hover:bg-slate text-sm whitespace-nowrap shrink-0 bg-bgSubtle text-textStandard shadow-none border px-4 py-2'"
>
{confirmLabel}
</Button>
Expand Down

0 comments on commit 682e19e

Please sign in to comment.