mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-24 10:46:30 -05:00
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:
parent
5b8247f455
commit
0eb80dbf41
2 changed files with 5 additions and 1 deletions
3
src/components/landing/layout/footer/footer.scss
Normal file
3
src/components/landing/layout/footer/footer.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
footer {
|
||||
color: rgba(255, 255, 255, .5);
|
||||
}
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue