Skip to content

Commit

Permalink
fix: update footer subtitle width (#611)
Browse files Browse the repository at this point in the history
* fix: update footer subtitle width

* chore: update footer subtitle css

* fix: updated footer subtitle css
  • Loading branch information
KevinRohlf authored Oct 30, 2024
1 parent 48445d9 commit 8f09d32
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/components/Footer/Footer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
position: relative;
text-align: left;
color: var(--footer-font-color);
margin-bottom: var(--spacer);
}

.main svg {
Expand All @@ -38,9 +39,20 @@

.subtitle {
position: absolute;
width: max-content;
top: 4rem;
left: 5rem;
max-width: 100%;
}

@media screen and (min-width: 60rem) {
.subtitle {
max-width: unset;
width: max-content;
}

.main {
margin-bottom: unset;
}
}

.copyright a {
Expand Down

0 comments on commit 8f09d32

Please sign in to comment.