1234567891011121314151617181920 |
- import styled from 'styled-components';
- export const Wrapper = styled.div`
- position: fixed;
- top: 86px;
- left: 267px;
- right: 0;
- margin: auto;
- max-width: 572px;
- width: 100%;
- height: 54px;
- border-radius: 4px;
- box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.38);
- background-color: white;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 8px;
- z-index: 2;
- `;
|