fix adaptive styles

This commit is contained in:
Bekbolsun
2024-02-21 20:51:07 +06:00
parent da6f68e00a
commit 6e334c5078
29 changed files with 394 additions and 128 deletions

View File

@@ -1,7 +1,17 @@
import { Stack, StackProps, styled } from '@mui/material'
import { IconButton, Stack, StackProps, styled } from '@mui/material'
import { CopyIcon } from '@/assets'
export const StyledContainer = styled((props: StackProps & { copied: number }) => (
<Stack {...props} direction={'row'} alignItems={'center'} />
))(({ theme, copied }) => ({
color: copied ? theme.palette.success.main : theme.palette.textSecondaryDecorate.main,
}))
export const StyledCopyButton = styled((props) => (
<IconButton color="inherit" {...props}>
<CopyIcon />
</IconButton>
))(() => ({
width: 40,
height: 40,
}))