palash-signoz 59f32884d2
Feat(UI): Auth (#1018)
* auth and rbac frontend changes
2022-05-03 15:27:09 +05:30

16 lines
253 B
TypeScript

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;
}
`;