Optimize parallax

This commit is contained in:
Schmelczer András 2019-12-25 22:30:44 +01:00
parent 5a87d2db71
commit da9d0a1136
15 changed files with 135 additions and 207 deletions

View file

@ -3,7 +3,7 @@ import { html } from "../../model/misc";
import "./footer.scss";
export const generate = ({ email, cv }: Footer, cvName: string): html => `
<footer>
<footer id="page-footer">
<a id="email" href="mailto:${email}">${email}</a>
<a id="cv" href="mailto:${cv}">${cvName}</a>
</footer>

View file

@ -1,8 +1,8 @@
@import "../../style/mixins";
@import "../../style/vars";
footer {
footer#page-footer {
@include card();
@include center-children();
margin: $normal-margin 0;
margin: $normal-margin auto;
}