Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ $text: #647b83;
$work: "work_sansregular", "Work Sans", "Helvetica Neue", Helvetica, Arial,
Geneva, sans-serif;

html {
height: 100%;
}

body {
font-family: $work !important;
padding-bottom: 80px;
position: relative;
margin: 0;
padding-bottom: 5rem;
min-height: 100%;
}

a:not(.nav-link) {
Expand Down Expand Up @@ -77,3 +84,10 @@ a:not(.nav-link) {
color: $text !important;
}
}

footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
}
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default class App extends React.Component<unknown, AppState> {
</Container>
</main>
<footer>
<Navbar bg="dark" variant="dark" expand="lg" fixed="bottom">
<Navbar bg="dark" variant="dark" expand="lg">
<Container>
<span className="text-muted">
&copy; 2022 The Brigade Authors
Expand Down