Skip to content
Merged
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
6 changes: 3 additions & 3 deletions pcweb/pages/use_cases/common/features_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ def feature_card(
rx.el.span(title, class_name="font-semibold text-slate-12 text-lg mt-2"),
rx.el.p(
description,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
class_name="text-secondary-11 text-sm font-medium",
)
if description
else None,
rx.el.ul(
*[
rx.el.li(
item,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-1",
class_name="text-secondary-11 text-sm font-medium mt-1",
)
for item in items
],
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium list-disc list-inside",
class_name="text-secondary-11 text-sm font-medium list-disc list-inside",
)
if items
else None,
Expand Down
6 changes: 3 additions & 3 deletions pcweb/pages/use_cases/common/features_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ def feature_card(
rx.el.span(title, class_name="font-semibold text-slate-12 text-lg mt-4"),
rx.el.p(
description,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-2",
class_name="text-secondary-11 text-sm font-medium mt-2",
),
rx.el.ul(
*[
rx.el.li(
item,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-1",
class_name="text-secondary-11 text-sm font-medium mt-1",
)
for item in items
],
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium list-disc list-inside mt-2",
class_name="text-secondary-11 text-sm font-medium list-disc list-inside mt-2",
)
if items
else None,
Expand Down
6 changes: 3 additions & 3 deletions pcweb/pages/use_cases/common/final_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ def right_content(h1: str, description: str) -> rx.Component:
),
rx.el.p(
description,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-2",
class_name="text-secondary-11 text-sm font-medium mt-2",
),
ui.link(
render_=ui.button(
"Go to the builder",
size="lg",
variant="outline",
class_name="w-fit font-semibold lg:mt-auto mt-8 text-m-slate-11 dark:text-m-slate-9 border-m-slate-5 dark:border-m-slate-12",
class_name="w-fit font-semibold lg:mt-auto mt-8 text-secondary-11 border-m-slate-5 dark:border-m-slate-12",
),
to=REFLEX_BUILD_URL,
target="_blank",
Expand All @@ -39,7 +39,7 @@ def left_content(h1: str, description: str) -> rx.Component:
),
rx.el.p(
description,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
class_name="text-secondary-11 text-sm font-medium",
),
demo_form_dialog(
trigger=ui.button(
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/use_cases/common/quote.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ def quote_card(
),
rx.el.p(
description,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
class_name="text-secondary-11 text-sm font-medium",
),
class_name="flex flex-col gap-6 border-b border-m-slate-4 dark:border-m-slate-12 p-10",
),
rx.el.div(
rx.el.p(quote, class_name="text-slate-12 text-lg font-semibold"),
rx.el.p(
name,
class_name="text-m-slate-11 dark:text-m-slate-9 text-base font-medium",
class_name="text-secondary-11 text-base font-medium",
),
class_name="flex flex-col gap-2 p-10",
),
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/use_cases/common/social_proof.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ def first_card(title: str) -> rx.Component:
return rx.el.div(
ui.icon(
"CheckmarkBadge02Icon",
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
class_name="text-secondary-11 shrink-0",
),
rx.el.span(
title,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
class_name="text-secondary-11 text-sm font-medium text-wrap",
),
class_name="flex flex-row gap-2.5 items-center max-lg:justify-center lg:col-span-2 px-10 h-full max-lg:h-[10.75rem] max-lg:w-full lg:border-r border-b w-full",
)
Expand Down
2 changes: 1 addition & 1 deletion pcweb/pages/use_cases/common/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def stat_card(
),
rx.el.p(
description,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
class_name="text-secondary-11 text-sm font-medium",
),
class_name="flex flex-col items-start p-10 gap-2 border-slate-3 lg:border-b lg:border-r",
)
4 changes: 2 additions & 2 deletions pcweb/pages/use_cases/consulting/views/social_proof.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ def first_card(title: str) -> rx.Component:
return rx.el.div(
ui.icon(
"CheckmarkBadge02Icon",
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
class_name="text-secondary-11 shrink-0",
),
rx.el.span(
title,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
class_name="text-secondary-11 text-sm font-medium text-wrap",
),
class_name="flex flex-row gap-2.5 items-center max-lg:justify-center lg:col-span-2 px-10 h-full max-lg:h-[10.75rem] max-lg:w-full w-full lg:border-r",
)
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/use_cases/finance/views/social_proof.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ def first_card(title: str) -> rx.Component:
return rx.el.div(
ui.icon(
"CheckmarkBadge02Icon",
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
class_name="text-secondary-11 shrink-0",
),
rx.el.span(
title,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
class_name="text-secondary-11 text-sm font-medium text-wrap",
),
class_name="flex flex-row gap-2.5 items-center max-lg:justify-center lg:col-span-2 px-10 h-full max-lg:h-[10.75rem] max-lg:w-full w-full lg:border-r",
)
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/use_cases/government/views/social_proof.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ def first_card(title: str) -> rx.Component:
return rx.el.div(
ui.icon(
"CheckmarkBadge02Icon",
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
class_name="text-secondary-11 shrink-0",
),
rx.el.span(
title,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
class_name="text-secondary-11 text-sm font-medium text-wrap",
),
class_name="flex flex-row gap-2.5 items-center max-lg:justify-center lg:col-span-2 px-10 h-full max-lg:h-[10.75rem] max-lg:w-full w-full lg:border-r",
)
Expand Down
5 changes: 2 additions & 3 deletions pcweb/pages/use_cases/healthcare/views/social_proof.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

LOGOS = [
"dana_farber",
"united_health_group",
"ggdzl",
"mercy",
"drager",
Expand All @@ -19,11 +18,11 @@ def first_card(title: str) -> rx.Component:
return rx.el.div(
ui.icon(
"CheckmarkBadge02Icon",
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
class_name="text-secondary-11 shrink-0",
),
rx.el.span(
title,
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
class_name="text-secondary-11 text-sm font-medium text-wrap",
),
class_name="flex flex-row gap-2.5 items-center max-lg:justify-center lg:col-span-2 px-10 h-full max-lg:h-[10.75rem] max-lg:w-full w-full lg:border-r",
)
Expand Down
Loading