Skip to content

Commit

Permalink
Accesibilidad
Browse files Browse the repository at this point in the history
  • Loading branch information
mouredev committed Mar 28, 2024
1 parent 7093bcb commit d3b18f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion link_bio/link_bio/components/featured_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ def featured_link(featured: Featured) -> rx.Component:
rx.image(
src=featured.image,
border_radius=Size.DEFAULT.value,
background=Color.CONTENT.value
background=Color.CONTENT.value,
width="100%",
height="auto",
alt=f"Imagen destacada para: {featured.title}"
),
rx.text(
featured.title,
Expand Down
3 changes: 2 additions & 1 deletion link_bio/link_bio/components/footer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def footer() -> rx.Component:
rx.image(
src="/icons/github.svg",
height=Size.LARGE.value,
width=Size.LARGE.value
width=Size.LARGE.value,
alt="Logo GitHub"
),
rx.text(
"BUILDING SOFTWARE WITH ♥ FROM GALICIA TO THE WORLD.",
Expand Down

0 comments on commit d3b18f0

Please sign in to comment.