Last active
March 25, 2021 15:50
-
-
Save bengrunfeld/5f39fa623f03d07f22325347eb5f978b to your computer and use it in GitHub Desktop.
Block of Inline CSS Elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Page = () => ( | |
<div> | |
<button style={{ color: "red", backgroundColor: "blue", padding: "10px", fontFamily: "Arial", margin: "30px" }}>Click Me</button> | |
<button style={{ color: "yellow", backgroundColor: "green", padding: "40px", fontFamily: "Helvetica, margin: "10px" }}>And Me</button> | |
<button style={{ color: "orange", backgroundColor: "purple", padding: "13px", fontFamily: "Sans Serif", margin: "50px" }}>Me Also</button> | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment