Skip to content

Commit

Permalink
Merge pull request #41 from colmedev/fix/text
Browse files Browse the repository at this point in the history
feat: ✨ se arreglo la alineacion en responsive de la seccion…
  • Loading branch information
jagcruz authored Oct 19, 2024
2 parents 48d266f + 3ed5a5e commit 47f4881
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/sections/AboutUs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
font-weight: 400;
font-size: 4.375rem;
margin-bottom: 4rem;
@media (width < 768px) {
text-align: center;
}

& span {
text-decoration: underline 0.25rem;
Expand All @@ -63,11 +66,21 @@
max-width: 70.563rem;
margin: 0 auto;

@media (width < 768px) {
display: flex;
flex-direction: column;
align-items: center;
}

& p {
font-weight: 500;
margin-bottom: 2rem;
text-wrap: pretty;
font-size: 1.25rem;

@media (width < 768px) {
text-align: center;
}
}

& hr {
Expand Down

0 comments on commit 47f4881

Please sign in to comment.