PR requested changes

This commit is contained in:
Gala
2022-09-14 14:48:30 +02:00
parent 17768bab0b
commit a394c9b59a
3 changed files with 4 additions and 6 deletions
@@ -211,7 +211,7 @@ export const DelegateModal: React.FC<{
initialValue={identityKey}
readOnly={Boolean(initialIdentityKey)}
textFieldProps={{
focused: !initialIdentityKey,
autoFocus: !initialIdentityKey,
}}
/>
</Box>
+2 -2
View File
@@ -1,5 +1,5 @@
import React from 'react';
import { Box, Card, CardContent, CardHeader } from '@mui/material';
import { Card, CardContent, CardHeader } from '@mui/material';
import { styled, Theme } from '@mui/material/styles';
import { Title } from './Title';
@@ -23,7 +23,7 @@ export const NymCard: React.FC<{
<CardHeader
sx={{
p: 3,
color: (theme: Theme) => theme.palette.text.primary,
color: 'text.primary',
'& .MuiCardHeader-title h5': { fontSize: '1.25rem' },
}}
title={<Title title={title} Icon={Icon} />}
+1 -3
View File
@@ -39,9 +39,7 @@ export const ApplicationLayout: React.FC = ({ children }) => {
<Nav />
</Box>
{appVersion && (
<Typography sx={{ color: (t) => t.palette.grey[500], fontSize: 14, ml: 5, mt: 8 }}>
Version {appVersion}
</Typography>
<Typography sx={{ color: 'grey.500', fontSize: 14, ml: 5, mt: 8 }}>Version {appVersion}</Typography>
)}
</Box>
<Container maxWidth="xl">