Skip to content

Commit

Permalink
member: fix name overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vladh committed Sep 4, 2024
1 parent 7190dea commit bdd3e79
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 bdd3e79

Please sign in to comment.