Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
Ensure the profile picture and text are side by side on larger screens and stack vertically on smaller screens.
Use media queries to adjust the layout for mobile devices, ensuring proper spacing and alignment.
Set a maximum width for the text in the "About me" section to improve readability.
  • Loading branch information
jmorawiecpwr authored Jul 12, 2024
1 parent b2c2a0f commit 74c6973
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,19 @@ section {
section#about .container {
display: flex;
align-items: flex-start;
justify-content: space-around;
justify-content: space-between;
margin-bottom: 2rem;
}

section#about img {
width: 200px;
margin-right: 20px;
flex-shrink: 0;
}

section#about .about-text {
flex-grow: 1;
max-width: 800px;
}

section#experience {
Expand Down

0 comments on commit 74c6973

Please sign in to comment.