update container

This commit is contained in:
Abhinav 2022-05-12 16:58:17 +05:30
parent 012000d048
commit c090a38906

View file

@ -56,7 +56,6 @@ export const Value = styled.div<{ width?: string }>`
`;
export const FlexWrapper = styled(Box)`
width: 100%;
display: flex;
align-items: center;
`;
@ -75,6 +74,10 @@ export const CenteredFlex = styled(FlexWrapper)`
justify-content: center;
`;
export const FluidContainer = styled(FlexWrapper)`
flex: 1;
`;
export const InvertedIconButton = styled(IconButton)`
background-color: ${({ theme }) => theme.palette.primary.main};
color: ${({ theme }) => theme.palette.background.default};