Skip to content

Commit

Permalink
improve button design for preview
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmfern committed Oct 14, 2024
1 parent bcb484f commit b91824c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions apps/docs/components/button.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ Add the component to your email template. Include styles where needed.
return (
<Button
href="https://example.com"
style={{ color: "#61dafb", padding: "10px 20px" }}
style={{
color: "#101010",
backgroundColor: "#eee",
borderRadius: 6,
padding: "10px 20px"
}}
>
Click me
</Button>
Expand All @@ -71,7 +76,12 @@ const Email = () => {
return (
<Button
href="https://example.com"
style={{ color: "#61dafb", padding: "10px 20px" }}
style={{
color: "#101010",
backgroundColor: "#eee",
borderRadius: 6,
padding: "10px 20px"
}}
>
Click me
</Button>
Expand Down

0 comments on commit b91824c

Please sign in to comment.