Skip to content

Instantly share code, notes, and snippets.

@DeMoorJasper
Created May 5, 2018 12:21
Show Gist options
  • Save DeMoorJasper/f14896ec497fa848dcfe9e626e040fcd to your computer and use it in GitHub Desktop.
Save DeMoorJasper/f14896ec497fa848dcfe9e626e040fcd to your computer and use it in GitHub Desktop.
Stylish media queries
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;
@media (max-width: 400px) {
background: #000000;
color: #ffffff;
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment