16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const Container = styled.div`
|
|
position: fixed;
|
|
z-index: 99;
|
|
top: 0px;
|
|
left: 80px;
|
|
height: 100vh;
|
|
width: 230px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
padding: 0px 16px 24px;
|
|
background: rgb(244, 245, 247);
|
|
border-right: 1px solid rgb(223, 225, 230);
|
|
`;
|