correct footer text color to look like the current version

fixes #14

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2020-05-15 12:36:07 +02:00 committed by Philip Molares
parent 5b8247f455
commit 0eb80dbf41
2 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,3 @@
footer {
color: rgba(255, 255, 255, .5);
}

View file

@ -2,6 +2,7 @@ import React from "react";
import {LanguagePicker} from "./language-picker";
import {PoweredByLinks} from "./powered-by-links";
import {SocialLink} from "./social-links";
import "./footer.scss";
export const Footer: React.FC = () => {
return (
@ -11,4 +12,4 @@ export const Footer: React.FC = () => {
<SocialLink/>
</footer>
);
}
}