Skip to content

Commit e0ca46d

Browse files
authored
remove united health group logo (#1805)
* remove united health group logo * bump
1 parent 31795b5 commit e0ca46d

File tree

10 files changed

+22
-23
lines changed

10 files changed

+22
-23
lines changed

pcweb/pages/use_cases/common/features_1.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ def feature_card(
1212
rx.el.span(title, class_name="font-semibold text-slate-12 text-lg mt-2"),
1313
rx.el.p(
1414
description,
15-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
15+
class_name="text-secondary-11 text-sm font-medium",
1616
)
1717
if description
1818
else None,
1919
rx.el.ul(
2020
*[
2121
rx.el.li(
2222
item,
23-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-1",
23+
class_name="text-secondary-11 text-sm font-medium mt-1",
2424
)
2525
for item in items
2626
],
27-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium list-disc list-inside",
27+
class_name="text-secondary-11 text-sm font-medium list-disc list-inside",
2828
)
2929
if items
3030
else None,

pcweb/pages/use_cases/common/features_2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ def feature_card(
2121
rx.el.span(title, class_name="font-semibold text-slate-12 text-lg mt-4"),
2222
rx.el.p(
2323
description,
24-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-2",
24+
class_name="text-secondary-11 text-sm font-medium mt-2",
2525
),
2626
rx.el.ul(
2727
*[
2828
rx.el.li(
2929
item,
30-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-1",
30+
class_name="text-secondary-11 text-sm font-medium mt-1",
3131
)
3232
for item in items
3333
],
34-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium list-disc list-inside mt-2",
34+
class_name="text-secondary-11 text-sm font-medium list-disc list-inside mt-2",
3535
)
3636
if items
3737
else None,

pcweb/pages/use_cases/common/final_section.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ def right_content(h1: str, description: str) -> rx.Component:
1414
),
1515
rx.el.p(
1616
description,
17-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-2",
17+
class_name="text-secondary-11 text-sm font-medium mt-2",
1818
),
1919
ui.link(
2020
render_=ui.button(
2121
"Go to the builder",
2222
size="lg",
2323
variant="outline",
24-
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",
24+
class_name="w-fit font-semibold lg:mt-auto mt-8 text-secondary-11 border-m-slate-5 dark:border-m-slate-12",
2525
),
2626
to=REFLEX_BUILD_URL,
2727
target="_blank",
@@ -39,7 +39,7 @@ def left_content(h1: str, description: str) -> rx.Component:
3939
),
4040
rx.el.p(
4141
description,
42-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
42+
class_name="text-secondary-11 text-sm font-medium",
4343
),
4444
demo_form_dialog(
4545
trigger=ui.button(

pcweb/pages/use_cases/common/quote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ def quote_card(
1616
),
1717
rx.el.p(
1818
description,
19-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
19+
class_name="text-secondary-11 text-sm font-medium",
2020
),
2121
class_name="flex flex-col gap-6 border-b border-m-slate-4 dark:border-m-slate-12 p-10",
2222
),
2323
rx.el.div(
2424
rx.el.p(quote, class_name="text-slate-12 text-lg font-semibold"),
2525
rx.el.p(
2626
name,
27-
class_name="text-m-slate-11 dark:text-m-slate-9 text-base font-medium",
27+
class_name="text-secondary-11 text-base font-medium",
2828
),
2929
class_name="flex flex-col gap-2 p-10",
3030
),

pcweb/pages/use_cases/common/social_proof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ def first_card(title: str) -> rx.Component:
88
return rx.el.div(
99
ui.icon(
1010
"CheckmarkBadge02Icon",
11-
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
11+
class_name="text-secondary-11 shrink-0",
1212
),
1313
rx.el.span(
1414
title,
15-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
15+
class_name="text-secondary-11 text-sm font-medium text-wrap",
1616
),
1717
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",
1818
)

pcweb/pages/use_cases/common/stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def stat_card(
1919
),
2020
rx.el.p(
2121
description,
22-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium",
22+
class_name="text-secondary-11 text-sm font-medium",
2323
),
2424
class_name="flex flex-col items-start p-10 gap-2 border-slate-3 lg:border-b lg:border-r",
2525
)

pcweb/pages/use_cases/consulting/views/social_proof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ def first_card(title: str) -> rx.Component:
1919
return rx.el.div(
2020
ui.icon(
2121
"CheckmarkBadge02Icon",
22-
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
22+
class_name="text-secondary-11 shrink-0",
2323
),
2424
rx.el.span(
2525
title,
26-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
26+
class_name="text-secondary-11 text-sm font-medium text-wrap",
2727
),
2828
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",
2929
)

pcweb/pages/use_cases/finance/views/social_proof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ def first_card(title: str) -> rx.Component:
1717
return rx.el.div(
1818
ui.icon(
1919
"CheckmarkBadge02Icon",
20-
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
20+
class_name="text-secondary-11 shrink-0",
2121
),
2222
rx.el.span(
2323
title,
24-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
24+
class_name="text-secondary-11 text-sm font-medium text-wrap",
2525
),
2626
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",
2727
)

pcweb/pages/use_cases/government/views/social_proof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ def first_card(title: str) -> rx.Component:
1717
return rx.el.div(
1818
ui.icon(
1919
"CheckmarkBadge02Icon",
20-
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
20+
class_name="text-secondary-11 shrink-0",
2121
),
2222
rx.el.span(
2323
title,
24-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
24+
class_name="text-secondary-11 text-sm font-medium text-wrap",
2525
),
2626
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",
2727
)

pcweb/pages/use_cases/healthcare/views/social_proof.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
LOGOS = [
77
"dana_farber",
8-
"united_health_group",
98
"ggdzl",
109
"mercy",
1110
"drager",
@@ -19,11 +18,11 @@ def first_card(title: str) -> rx.Component:
1918
return rx.el.div(
2019
ui.icon(
2120
"CheckmarkBadge02Icon",
22-
class_name="text-m-slate-11 dark:text-m-slate-9 shrink-0",
21+
class_name="text-secondary-11 shrink-0",
2322
),
2423
rx.el.span(
2524
title,
26-
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium text-wrap",
25+
class_name="text-secondary-11 text-sm font-medium text-wrap",
2726
),
2827
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",
2928
)

0 commit comments

Comments
 (0)