Skip to content

Commit

Permalink
Limit button size to 200px
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Damer committed Feb 28, 2023
1 parent 060e934 commit ff3f0fd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/templates/token.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ const generateTokenPage = ({ secret, domain }: TokenProps) => {
className="hover-img-button img-button"
style={{
verticalAlign: 'middle',
width: values.px200,
...gmailLinkStyles,
}}
/>
Expand Down Expand Up @@ -426,7 +427,11 @@ const generateTokenPage = ({ secret, domain }: TokenProps) => {
<img
src={`${assetsEndpoint}/discord_button.png`}
className="hover-img-button img-button"
style={{ verticalAlign: 'middle', ...gmailLinkStyles }}
style={{
verticalAlign: 'middle',
width: values.px200,
...gmailLinkStyles,
}}
/>
</a>
</MjmlText>
Expand Down

0 comments on commit ff3f0fd

Please sign in to comment.