Skip to content

Commit

Permalink
add footer
Browse files Browse the repository at this point in the history
  • Loading branch information
monodyle committed Aug 31, 2023
1 parent e7449e2 commit 70a4ee9
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/app.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,22 @@
color: var(--stone-600);
text-align: center;
}

.footer {
margin-top: auto;
padding: 24px;
text-align: center;
font-size: 12px;
color: var(--stone-500);
}

.footer a {
display: inline-block;
color: var(--stone-600);
text-decoration: none;
border-bottom: 1px dashed;
}

.footer a:hover {
color: var(--primary);
}
19 changes: 19 additions & 0 deletions src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,25 @@ function App() {
</div>
<Demo />
</div>
<footer className={styles.footer}>
© monodyle 2023+
<br />
<a
href="https://github.com/monodyle/hiki"
target="_blank"
rel="noreferrer noopener"
>
github
</a>{" "}
/{" "}
<a
href="https://ko-fi.com/monodyle"
target="_blank"
rel="noreferrer noopener"
>
buy me a coffee
</a>
</footer>
</main>
);
}
Expand Down

0 comments on commit 70a4ee9

Please sign in to comment.