mirror of
https://github.com/elyby/emails-renderer.git
synced 2024-11-16 18:23:23 +05:30
Simplify footer logo align
This commit is contained in:
parent
95227bc90f
commit
7a62d608d1
@ -11,7 +11,7 @@ export default function Footer() {
|
|||||||
return (
|
return (
|
||||||
<Table style={styles.footer}>
|
<Table style={styles.footer}>
|
||||||
<tr>
|
<tr>
|
||||||
<td rowSpan={2} style={styles.footerText}>
|
<td style={styles.footerText}>
|
||||||
<Message {...messages.footer} values={{
|
<Message {...messages.footer} values={{
|
||||||
serviceLink: (
|
serviceLink: (
|
||||||
<a href="https://account.ely.by" style={styles.footerLink}>
|
<a href="https://account.ely.by" style={styles.footerLink}>
|
||||||
@ -23,12 +23,7 @@ export default function Footer() {
|
|||||||
<td style={styles.footerLogo}>
|
<td style={styles.footerLogo}>
|
||||||
<a href="http://ely.by">
|
<a href="http://ely.by">
|
||||||
<img src={logoImg} alt="Ely.by" width="128" height="58" />
|
<img src={logoImg} alt="Ely.by" width="128" height="58" />
|
||||||
</a>
|
<br />
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td style={styles.footerLogoSubtitle}>
|
|
||||||
<a href="http://ely.by">
|
|
||||||
<HTMLMessage {...messages.alternativeMinecraftServices} />
|
<HTMLMessage {...messages.alternativeMinecraftServices} />
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
@ -2,11 +2,6 @@ import { CSSProperties } from 'react';
|
|||||||
|
|
||||||
import { green } from 'components/ui/colors';
|
import { green } from 'components/ui/colors';
|
||||||
|
|
||||||
const footerLogoBaseStyles: CSSProperties = {
|
|
||||||
padding: '0 30px',
|
|
||||||
textAlign: 'center',
|
|
||||||
};
|
|
||||||
|
|
||||||
const styles: Record<string, CSSProperties> = {
|
const styles: Record<string, CSSProperties> = {
|
||||||
footer: {
|
footer: {
|
||||||
borderTop: `10px solid ${green.base}`,
|
borderTop: `10px solid ${green.base}`,
|
||||||
@ -25,12 +20,8 @@ const styles: Record<string, CSSProperties> = {
|
|||||||
borderBottom: '1px dashed #7A7A7A',
|
borderBottom: '1px dashed #7A7A7A',
|
||||||
},
|
},
|
||||||
footerLogo: {
|
footerLogo: {
|
||||||
...footerLogoBaseStyles,
|
padding: '0 30px',
|
||||||
verticalAlign: 'bottom',
|
textAlign: 'center',
|
||||||
},
|
|
||||||
footerLogoSubtitle: {
|
|
||||||
...footerLogoBaseStyles,
|
|
||||||
verticalAlign: 'top',
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user