styled.ts 327 B

123456789101112131415
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. position: fixed;
  4. top: 0;
  5. height: 60px;
  6. width: 100%;
  7. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  8. border: solid 1px rgba(0, 0, 0, 0.12);
  9. display: flex;
  10. align-items: center;
  11. padding: 0 24px;
  12. background-color: white;
  13. z-index: 1;
  14. `;