Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const buttonVariants = cva(
outline_primary:
"border border-primary-700 text-primary-700 bg-white shadow-xs hover:bg-primary-700 hover:text-white dark:border-primary-700 dark:bg-primary-700 dark:text-white",
primary_gradient:
"text-white border border-primary-900 rounded-lg font-medium relative overflow-hidden bg-linear-to-b from-primary-700 to-primary-800 hover:from-primary-800 hover:to-primary-900 shadow-lg",
"text-white border border-primary-900 rounded-lg font-medium relative overflow-hidden bg-linear-to-b from-primary-800 to-primary-900 hover:from-primary-900 hover:to-primary-900 shadow-lg",
white:
"bg-white border border-secondary-400 text-gray-900 shadow-xs hover:bg-gray-100 hover:text-gray-900 dark:bg-gray-800 dark:text-gray-50 dark:hover:bg-gray-800/80",
warning:
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Landing/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export function LandingPage() {
</p>
</div>
</div>
<div className="flex flex-col items-center justify-center gap-5 p-3 rounded-xl shadow-sm bg-white hover:shadow-md transition-all bg-[url('/images/patient_background.png')] bg-auto bg-center bg-no-repeat">
<div className="flex flex-col items-center justify-center gap-5 p-3 rounded-xl shadow-md ring-2 ring-primary-500 bg-white hover:shadow-lg transition-all bg-[url('/images/patient_background.png')] bg-auto bg-center bg-no-repeat">
<div className="rounded-full bg-indigo-100 m-2 p-1 aspect-square flex justify-center items-center border-2 border-white shadow-sm">
<CareIcon
icon="d-patient"
Expand All @@ -307,8 +307,8 @@ export function LandingPage() {
</div>
<div className="flex flex-col items-center">
<Button
variant="outline"
className="w-full text-xs md:text-sm border border-primary-600 text-primary-700 hover:text-primary-800 font-semibold"
variant="primary_gradient"
className="w-full text-xs md:text-sm font-semibold"
onClick={() => navigate(`/login?mode=patient`)}
>
{t("patient_login")}
Expand Down
Loading