Skip to content

Commit d1cc6bc

Browse files
committed
fix hosting banner on mobile view
1 parent 1b9ff19 commit d1cc6bc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pcweb/components/hosting_banner.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ def hosting_banner() -> rx.Component:
3535
class_name="hidden md:inline-block text-slate-12 font-medium text-sm",
3636
),
3737
# ... keep this for mobile view if/when needed
38-
# rx.el.span(
39-
# "Build internal apps with AI.",
40-
# # class_name="text-slate-12 font-medium text-sm",
41-
# class_name="inline-block md:hidden text-slate-12 font-medium text-sm",
42-
# ),
38+
rx.el.span(
39+
"Build internal apps with AI.",
40+
# class_name="text-slate-12 font-medium text-sm",
41+
class_name="inline-block md:hidden text-slate-12 font-medium text-sm",
42+
),
4343
class_name="text-slate-12 font-semibold text-sm z-[1]",
4444
),
45+
# ... keep this for mobile view if/when needed
4546
rx.el.button(
4647
"Try for Free!",
4748
class_name="hidden md:inline-block text-green-11 h-[1.5rem] rounded-md bg-green-4 px-1.5 text-sm font-semibold z-[1] items-center justify-center shrink-0",

0 commit comments

Comments
 (0)