Skip to content

Commit

Permalink
fix: wrapping tag row in contact box
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelbr committed Dec 12, 2024
1 parent 031a1fc commit 15c2f82
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/sections/contact-box/contact-box.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
border-radius: var(--radius-small);
background: var(--_contactBox__background);
color: var(--_contactBox__color);

@media (max-width: 400px) {
padding: 1rem 1rem;
}
}
.contactBox__inner--light {
--_contactBox__background: var(--background-bg-light-secondary);
Expand Down Expand Up @@ -53,7 +57,8 @@
.tagList {
display: flex;
flex-direction: column;
gap: 0.75rem;
gap: var(--padding-s);
flex-wrap: wrap;

align-items: flex-start;
min-width: 120px;
Expand Down

0 comments on commit 15c2f82

Please sign in to comment.