Skip to content

[React Style] how to create media query CSS?

Hill Liu edited this page Apr 24, 2018 · 7 revisions
@media (min-width: 48em) {
   .home-menu ul {
      float: right;
   }
}

RWD config

https://github.com/react-atomic/react-atomic-molecule/blob/master/src/config/styles/rwd.js

With React Style

import {min, reactStyle} from 'react-atomic-molecule';

const Styles = {
   menu: reactStyle(
      {float: 'right'},
      [min.md, '.home-menu ul']
   )
};
Clone this wiki locally