Skip to content

Commit 4c8c025

Browse files
committed
website: update footer style.
1 parent c36faec commit 4c8c025

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
A markdown editor with preview, implemented with React.js and TypeScript.
2323
</p>
2424

25+
26+
[Migrate from @uiw/react-markdown-editor 4.x to 5.x.](https://github.com/uiwjs/react-markdown-editor/releases/tag/v5.0.0)
27+
2528
## Install
2629

2730
```bash
@@ -295,7 +298,7 @@ As always, thanks to our amazing contributors!
295298
<img src="https://uiwjs.github.io/react-markdown-editor/CONTRIBUTORS.svg" />
296299
</a>
297300

298-
Made with [github-action-contributors](https://github.com/jaywcjlove/github-action-contributors).
301+
Made with [action-contributors](https://github.com/jaywcjlove/github-action-contributors).
299302

300303
## License
301304

website/components/Footer.module.less

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
padding: 15px 0 100px 0;
44
font-size: 12px;
55
line-height: 20px;
6-
color: #fff;
76
a {
8-
color: #03a9f4;
7+
color: var(--color-accent-fg);
98
}
109
}

website/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface IFooterProps {
1010

1111
export default function Footer({ name, href, year, github }: IFooterProps) {
1212
return (
13-
<div className={style.footer}>
13+
<div className={[style.footer, 'wmde-markdown-var'].join(' ')}>
1414
<div>
1515
Licensed under MIT. (Yes it&acute;s free and <a href={github}>open-sourced</a>)
1616
</div>

0 commit comments

Comments
 (0)