16 lines
253 B
TypeScript
Raw Normal View History

import { Select } from 'antd';
import styled from 'styled-components';
export const SelectDrawer = styled(Select)`
width: 120px;
`;
export const TitleWrapper = styled.div`
display: flex;
margin-bottom: 1rem;
> article {
min-width: 11rem;
}
`;