diff --git a/web/app/components/root/__copyright-link/root__copyright-link.scss b/web/app/components/root/__copyright-link/root__copyright-link.scss new file mode 100644 index 00000000..f91e583e --- /dev/null +++ b/web/app/components/root/__copyright-link/root__copyright-link.scss @@ -0,0 +1,3 @@ +.root__copyright-link { + color: #aaa; +} diff --git a/web/app/components/root/__copyright/root__copyright.scss b/web/app/components/root/__copyright/root__copyright.scss new file mode 100644 index 00000000..8a61eb73 --- /dev/null +++ b/web/app/components/root/__copyright/root__copyright.scss @@ -0,0 +1,6 @@ +.root__copyright { + margin: 48px 0 0; + font-size: 12px; + text-align: right; + color: #aaa; +} diff --git a/web/app/components/root/index.js b/web/app/components/root/index.js index b2eef646..9d32ab28 100644 --- a/web/app/components/root/index.js +++ b/web/app/components/root/index.js @@ -2,6 +2,8 @@ export { default } from './root'; require('./root.scss'); +require('./__copyright/root__copyright.scss'); +require('./__copyright-link/root__copyright-link.scss'); require('./__input/root__input.scss'); require('./__preloader/root__preloader.scss'); require('./__pinned-comment/root__pinned-comment.scss'); diff --git a/web/app/components/root/root.jsx b/web/app/components/root/root.jsx index d3bf1197..1539390e 100644 --- a/web/app/components/root/root.jsx +++ b/web/app/components/root/root.jsx @@ -278,6 +278,10 @@ export default class Root extends Component { ) } + +
+ Powered by Remark42 +
);