Skip to content

Commit

Permalink
fix: resolve issue with footer nav not sticking to bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
madcampos committed Aug 8, 2024
1 parent db164d0 commit 20f98c9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/layouts/Base/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ html, body {
font-size: var(--body-text);
}

body {
display: flex;
flex-direction: column;
}


*, *::after, *::before {
box-sizing: inherit;
Expand Down Expand Up @@ -63,6 +68,7 @@ iframe {

a {
overflow-wrap: break-word;
text-decoration-color: currentColor;
}

h1, h2, h3, h4, h5, h6, p, dt, li, dd, blockquote, td {
Expand All @@ -79,6 +85,9 @@ h1 {
overflow-wrap: break-word;
text-wrap: balance;
word-break: break-word;

color: white;
text-shadow: 0.2rem 0.2rem 0.4rem black;
}

.visually-hidden {
Expand Down

0 comments on commit 20f98c9

Please sign in to comment.