Media queries

February 4, 2018 ยท View on GitHub

Use @media queries @keyframes and other CSS at-rules:

const template = {
    color: 'red',
    '@media (max-width: 1200px)': {
        color: 'tomato',
    },
};