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