如何在样式组件中同时使用(最大设备宽度)和(最小设备宽度)?

时间:2020-04-19 10:52:57

标签: reactjs npm styled-components

const size = {
  mobileS: '320px',
  mobileL: '425px',
}
export const device = {
  mobile: `(min-width: ${size.mobileS}) and (max-width: ${size.mobileL})`,
};

我试图制作一个自定义设备并尝试使用它,但是它不起作用。如何同时使用最小宽度和最大宽度?

0 个答案:

没有答案