feat: Introduce adding a new app connection

This commit is contained in:
Ali BARIN
2021-10-17 15:50:42 +02:00
parent 084a831e7a
commit a1363f7fdd
11 changed files with 126 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ type AppRowProps = {
application: App;
}
const countTranslation = (value: React.ReactNode) => (<><strong>{value}</strong><DesktopOnlyBreakline /></>);
const countTranslation = (value: React.ReactNode) => (<><strong>{value}</strong><br /></>);
function AppRow(props: AppRowProps) {
const formatMessage = useFormatMessage();

View File

@@ -20,7 +20,7 @@ export const Typography = styled(MuiTypography)(({ theme }) => ({
}));
export const DesktopOnlyBreakline = styled('br')(({ theme }) => ({
[theme.breakpoints.down('md')]: {
[theme.breakpoints.down('sm')]: {
display: 'none',
}
}));