We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94ffd41 commit 3599cdaCopy full SHA for 3599cda
portfolio/portfolio/components/skills.py
@@ -13,12 +13,12 @@ def skill_card(title: str, skills: list[str]) -> rx.Component:
13
font_weight="bold",
14
margin_bottom="4",
15
),
16
- rx.wrap(
+ rx.flex(
17
*[
18
rx.badge(
19
skill,
20
- color_scheme="primary",
21
- variant="subtle",
+ color_scheme="blue",
+ variant="soft",
22
padding="2",
23
border_radius="full",
24
font_weight="medium",
@@ -36,6 +36,7 @@ def skill_card(title: str, skills: list[str]) -> rx.Component:
36
for skill in skills
37
],
38
spacing="3",
39
+ wrap="wrap",
40
41
align="start",
42
height="100%",
0 commit comments