PR requested changes
This commit is contained in:
@@ -211,7 +211,7 @@ export const DelegateModal: React.FC<{
|
||||
initialValue={identityKey}
|
||||
readOnly={Boolean(initialIdentityKey)}
|
||||
textFieldProps={{
|
||||
focused: !initialIdentityKey,
|
||||
autoFocus: !initialIdentityKey,
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
|
||||
@@ -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} />}
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user