-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update signature generator to new branding #10
base: main
Are you sure you want to change the base?
Conversation
src={brandLogo.link} | ||
alt={brandLogo.alt} | ||
/> | ||
<img src={brandLogo.link} alt={brandLogo.alt} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably want width and height, pretty sure that was deliberate for email clients (including style and explicit width/height).
@@ -199,7 +191,6 @@ const Signature = (props) => { | |||
<td | |||
style={{ | |||
color: '#4a4a4a', | |||
fontFamily: '"Segoe UI", Helvetica, Arial, sans-serif', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deliberately removed? Might need to be explicit for email clients.
We need to use a non-gradient version of the logo because we don't want the gradient on a whitebackground (the yellow part of the gradient gets washed out). Side-note: I can't remember how this setup is affected by light mode / dark mode in email clients? |
@@ -18,7 +18,6 @@ const RepliesAndForwards = (props) => { | |||
} = props; | |||
const styleObj = { | |||
color: 'black', | |||
fontFamily: '"Segoe UI", Helvetica, Arial, sans-serif', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably want to keep all of the explicit fonts given email clients.
Drop segoe though, keep helvetica, arial, sans
No description provided.