Fixes footer layout
This commit is contained in:
@@ -4,10 +4,14 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="footer-container">
|
<div class="footer-container">
|
||||||
<div class="footer-content">
|
<div class="footer-content">
|
||||||
<SocialIcons/>
|
<a href="/privacy-policy"
|
||||||
|
class="footer-link">Privacy Policy</a>
|
||||||
|
|
||||||
<p class="footer-text">
|
<p class="footer-text">
|
||||||
© @DateTime.Now.Year Beau Findlay. All rights reserved.
|
© @DateTime.Now.Year Beau Findlay. All rights reserved.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<SocialIcons/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@@ -304,12 +304,18 @@ body:has(.menu-toggle:checked) {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--space-4);
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-footer .footer-link {
|
||||||
|
font-size: var(--font-size-xs);
|
||||||
|
color: var(--color-slate-50);
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-footer .footer-text {
|
.page-footer .footer-text {
|
||||||
font-size: var(--font-size-xs);
|
font-size: var(--font-size-xs);
|
||||||
line-height: 1.25;
|
|
||||||
color: var(--color-slate-50);
|
color: var(--color-slate-50);
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
@@ -317,13 +323,7 @@ body:has(.menu-toggle:checked) {
|
|||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.page-footer .footer-content {
|
.page-footer .footer-content {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page-footer .footer-text {
|
|
||||||
order: 1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user