Add footer

This commit is contained in:
stefan080106
2022-05-15 19:41:31 +02:00
parent 95095c90da
commit 4d53b60480
4 changed files with 73 additions and 0 deletions

26
styles/Footer.module.css Normal file
View File

@@ -0,0 +1,26 @@
.Footer {
height: 30px;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: absolute;
bottom: 0;
}
.Footer a {
padding: 0 1em;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.Footer a:hover {
opacity: 0.8;
}
/*# sourceMappingURL=Footer.module.css.map */