Skip to content

Commit 960ae73

Browse files
committed
push
1 parent 23450dd commit 960ae73

File tree

4 files changed

+9
-53
lines changed

4 files changed

+9
-53
lines changed
Lines changed: 4 additions & 0 deletions
Loading

pcweb/components/lemcal_modal.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

pcweb/pages/databricks/views/integrations.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import reflex_ui as ui
33

44
from pcweb.components.numbers_pattern import numbers_pattern
5-
from pcweb.pages.docs import ai_builder
65

76

87
def header() -> rx.Component:
@@ -25,10 +24,7 @@ def intregation_card(
2524
text: str = "",
2625
class_name: str = "",
2726
):
28-
first_light_dark_path = rx.color_mode_cond(
29-
f"/landing/integrations/light/{first_integration}.svg",
30-
f"/landing/integrations/dark/{first_integration}.svg",
31-
)
27+
first_light_dark_path = f"/landing/integrations/light/{first_integration}.svg"
3228
return rx.el.div(
3329
rx.el.div(
3430
rx.image(
@@ -90,12 +86,12 @@ def r_logo_card() -> rx.Component:
9086
return rx.el.div(
9187
rx.el.div(
9288
rx.image(
93-
src="/landing/integrations/light/r_logo.svg",
89+
src="/landing/integrations/light/r_logo_violet.svg",
9490
class_name="h-8 w-autopointer-events-none shrink-0 absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
9591
),
96-
class_name="size-15 rounded-lg border border-slate-5 dark:border-[#1C2024] shadow-large bg-white-1 absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 z-[2]",
92+
class_name="size-15 rounded-lg shadow-large bg-primary-9 absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 z-[2]",
9793
),
98-
class_name="size-18 rounded-xl border border-violet-9 dark:border-[#1C2024] shadow-large bg-violet-8 dark:bg-violet-1 relative z-[2]",
94+
class_name="size-18 rounded-xl border border-violet-6 shadow-large bg-violet-3 dark:bg-violet-1 relative z-[2]",
9995
)
10096

10197

pcweb/whitelist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- Incorrect: WHITELISTED_PAGES = ["/docs/getting-started/introduction/"]
1111
"""
1212

13-
WHITELISTED_PAGES = ["/databricks"]
13+
WHITELISTED_PAGES = []
1414

1515

1616
def _check_whitelisted_path(path: str):

0 commit comments

Comments
 (0)