We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7093bcb commit d3b18f0Copy full SHA for d3b18f0
link_bio/link_bio/components/featured_link.py
@@ -10,7 +10,10 @@ def featured_link(featured: Featured) -> rx.Component:
10
rx.image(
11
src=featured.image,
12
border_radius=Size.DEFAULT.value,
13
- background=Color.CONTENT.value
+ background=Color.CONTENT.value,
14
+ width="100%",
15
+ height="auto",
16
+ alt=f"Imagen destacada para: {featured.title}"
17
),
18
rx.text(
19
featured.title,
link_bio/link_bio/components/footer.py
@@ -34,7 +34,8 @@ def footer() -> rx.Component:
34
35
src="/icons/github.svg",
36
height=Size.LARGE.value,
37
- width=Size.LARGE.value
+ width=Size.LARGE.value,
38
+ alt="Logo GitHub"
39
40
41
"BUILDING SOFTWARE WITH ♥ FROM GALICIA TO THE WORLD.",
0 commit comments