Skip to content

Commit

Permalink
Merge pull request opensourcepledge#83 from opensourcepledge/vladh/fi…
Browse files Browse the repository at this point in the history
…x-member-name-overflow

member: fix name overflow
  • Loading branch information
vladh authored Sep 4, 2024
2 parents 7190dea + bdd3e79 commit e54340b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/pages/members/[id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,20 @@ export async function getStaticPaths() {
<style>
.company-intro {
display: flex;
flex-wrap: wrap;
align-items: center;
@media (max-width: 800px) {
display: block;
}
img {
max-width: 7rem;
margin-right: 2rem;
@media (max-width: 800px) {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 1rem;
}
}
h1 {
margin: 0;
Expand Down

0 comments on commit e54340b

Please sign in to comment.