Skip to content

Commit

Permalink
Agrega clamp al titulo
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximoJSDev committed Aug 20, 2024
1 parent 4a26646 commit 0a8fa2a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ import SobreMi from "@/components/SobreMi.astro";
padding-top: 15px;
}
#inicio .inicio__title {
font-size: 32px;
font-size: clamp(28px, 8.5vw, 32px); //32px;
}
#inicio .inicio__subtitle {
font-size: clamp(21px, 6.4vw, 24px); //32px;
}
#inicio .inicio__text {
font-size: 22px;
Expand All @@ -191,6 +194,9 @@ import SobreMi from "@/components/SobreMi.astro";
#tecnologias .slide img {
height: 40px;
}
#habilidades .habilidad {
padding: 30px;
}
#sobre-mi .sobre-mi__article > img {
height: 240px;
width: 240px;
Expand Down

0 comments on commit 0a8fa2a

Please sign in to comment.