Skip to content

Instantly share code, notes, and snippets.

@DeMoorJasper
Created May 5, 2018 12:20
Show Gist options
  • Save DeMoorJasper/3a3b157849f240973208b8463db60593 to your computer and use it in GitHub Desktop.
Save DeMoorJasper/3a3b157849f240973208b8463db60593 to your computer and use it in GitHub Desktop.
stylish event
import { stylish } from 'tiny-stylish-components';
const Button = stylish.button`
background: #ffffff;
color: #a2a2a2;
border: 1px solid #a2a2a2;
border-radius: 5px;
width: 100px;
padding: 5px 10px;
&:hover {
color: red;
background: #a2a2a2;
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment