App.styled.ts 170 B

123456789
  1. import styled from 'styled-components';
  2. export const Layout = styled.div`
  3. min-width: 1200px;
  4. @media screen and (max-width: 1023px) {
  5. min-width: initial;
  6. }
  7. `;