style(website): improve footer layout

This commit is contained in:
Elian Doran 2025-09-27 01:04:28 +03:00
parent 70afb636ca
commit cfe71a3426
No known key found for this signature in database
3 changed files with 10 additions and 6 deletions

View File

@ -0,0 +1,8 @@
footer {
margin: 0;
padding: 1em 0;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
text-align: center;
color: var(--muted-color);
font-size: 0.8em;
}

View File

@ -1,3 +1,5 @@
import "./Footer.css";
export default function Footer() {
return (
<footer>

View File

@ -59,12 +59,6 @@ img {
height: auto;
}
footer {
margin: 0;
padding: 1em 0;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.card {
border: 0;
box-shadow: var(--card-box-shadow);