Improve style

This commit is contained in:
Nicola Benaglia 2025-06-12 23:04:23 +02:00
parent a7d476bb1c
commit 44593893c1
5 changed files with 15 additions and 15 deletions

View File

@ -213,7 +213,7 @@ export const CreateCommonSecret = ({
return ( return (
<Box <Box
sx={{ sx={{
background: theme.palette.background.default, background: theme.palette.background.paper,
display: 'flex', display: 'flex',
flexDirection: 'column', flexDirection: 'column',
gap: '25px', gap: '25px',

View File

@ -185,4 +185,4 @@ export const ContextMenu = ({ children, groupId, getUserSettings }) => {
</CustomStyledMenu> </CustomStyledMenu>
</div> </div>
); );
}; }; // TODO translate

View File

@ -584,7 +584,7 @@ export const Minting = ({ setIsOpenMinting, myAddress, show }) => {
sx={{ borderBottom: 1, borderColor: theme.palette.text.secondary }} sx={{ borderBottom: 1, borderColor: theme.palette.text.secondary }}
> >
<Tabs <Tabs
value={setValueMintingTab} value={valueMintingTab}
onChange={handleChange} onChange={handleChange}
variant={'fullWidth'} variant={'fullWidth'}
scrollButtons="auto" scrollButtons="auto"
@ -596,7 +596,7 @@ export const Minting = ({ setIsOpenMinting, myAddress, show }) => {
}} }}
> >
<Tab <Tab
label="Minting Details" label="Minting Details" // TODO translate
sx={{ sx={{
'&.Mui-selected': { '&.Mui-selected': {
color: theme.palette.text.primary, color: theme.palette.text.primary,

View File

@ -515,9 +515,9 @@ export const NotAuthenticated = ({
<Box <Box
sx={{ sx={{
alignItems: 'center',
display: 'flex', display: 'flex',
gap: '10px', gap: '10px',
alignItems: 'center',
}} }}
> >
<HtmlTooltip <HtmlTooltip
@ -550,9 +550,9 @@ export const NotAuthenticated = ({
<Box <Box
sx={{ sx={{
alignItems: 'center',
display: 'flex', display: 'flex',
gap: '10px', gap: '10px',
alignItems: 'center',
}} }}
> >
<HtmlTooltip <HtmlTooltip
@ -628,18 +628,18 @@ export const NotAuthenticated = ({
<Box <Box
sx={{ sx={{
display: 'flex',
gap: '10px',
alignItems: 'center', alignItems: 'center',
borderRadius: '8px',
display: 'flex',
flexDirection: 'column', flexDirection: 'column',
outlineWidth: '0.5px', gap: '10px',
outlineStyle: 'solid', outlineStyle: 'solid',
outlineWidth: '0.5px',
outlineColor: outlineColor:
theme.palette.mode === 'dark' theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.5)' ? 'rgba(255, 255, 255, 0.5)'
: 'rgba(0, 0, 0, 0.3)', : 'rgba(0, 0, 0, 0.3)',
padding: '20px 30px', padding: '20px 30px',
borderRadius: '8px',
}} }}
> >
<> <>
@ -795,11 +795,11 @@ export const NotAuthenticated = ({
<DialogContent> <DialogContent>
<Box <Box
sx={{ sx={{
width: '100% !important',
overflow: 'auto',
height: '60vh',
display: 'flex', display: 'flex',
flexDirection: 'column', flexDirection: 'column',
height: '60vh',
overflow: 'auto',
width: '100% !important',
}} }}
> >
{mode === 'list' && ( {mode === 'list' && (
@ -894,10 +894,10 @@ export const NotAuthenticated = ({
<Box <Box
sx={{ sx={{
alignItems: 'center',
display: 'flex', display: 'flex',
gap: '10px', gap: '10px',
justifyContent: 'space-between', justifyContent: 'space-between',
alignItems: 'center',
}} }}
> >
<Button <Button

View File

@ -293,9 +293,9 @@ export const RegisterName = ({
{isNameAvailable === Availability.AVAILABLE && ( {isNameAvailable === Availability.AVAILABLE && (
<Box <Box
sx={{ sx={{
alignItems: 'center',
display: 'flex', display: 'flex',
gap: '5px', gap: '5px',
alignItems: 'center',
}} }}
> >
<CheckIcon <CheckIcon