(cherry picked from commit 1b34244143
)
pull/1032/head
parent
6612dab547
commit
80b0c594b5
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,55 @@
|
|||||||
|
import React, { Component } from 'react';
|
||||||
|
import FieldSet from 'Components/FieldSet';
|
||||||
|
import Link from 'Components/Link/Link';
|
||||||
|
import styles from '../styles.css';
|
||||||
|
|
||||||
|
class Donations extends Component {
|
||||||
|
|
||||||
|
//
|
||||||
|
// Render
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<FieldSet legend="Donations">
|
||||||
|
<div className={styles.logoContainer} title="Radarr">
|
||||||
|
<Link to="https://opencollective.com/radarr">
|
||||||
|
<img
|
||||||
|
className={styles.logo}
|
||||||
|
src={`${window.Readarr.urlBase}/Content/Images/Icons/logo-radarr.png`}
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
<div className={styles.logoContainer} title="Lidarr">
|
||||||
|
<Link to="https://opencollective.com/lidarr">
|
||||||
|
<img
|
||||||
|
className={styles.logo}
|
||||||
|
src={`${window.Readarr.urlBase}/Content/Images/Icons/logo-lidarr.png`}
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
<div className={styles.logoContainer} title="Readarr">
|
||||||
|
<Link to="https://opencollective.com/readarr">
|
||||||
|
<img
|
||||||
|
className={styles.logo}
|
||||||
|
src={`${window.Readarr.urlBase}/Content/Images/Icons/logo-readarr.png`}
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
<div className={styles.logoContainer} title="Sonarr">
|
||||||
|
<Link to="https://opencollective.com/sonarr">
|
||||||
|
<img
|
||||||
|
className={styles.logo}
|
||||||
|
src={`${window.Readarr.urlBase}/Content/Images/Icons/logo-sonarr.png`}
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</FieldSet>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Donations.propTypes = {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Donations;
|
@ -0,0 +1,17 @@
|
|||||||
|
.logo {
|
||||||
|
margin: auto;
|
||||||
|
padding: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logoContainer {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 1em;
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
outline: none;
|
||||||
|
border: solid 1px #e6e6e6;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
background: #f8f8ff;
|
||||||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
Loading…
Reference in new issue