add logout button

This commit is contained in:
aurinex
2025-07-21 23:08:11 +05:00
parent 83a0e308bc
commit 5d660e7a95
3 changed files with 39 additions and 6 deletions

View File

@ -67,6 +67,7 @@ export default function CapeCard({
width: 200,
overflow: 'hidden',
position: 'relative', // для позиционирования ценника
borderRadius: '1vw',
}}
>
{/* Ценник для магазина */}
@ -97,7 +98,13 @@ export default function CapeCard({
}}
/>
<CardContent sx={{ bgcolor: 'rgba(255, 255, 255, 0.05)', pt: '9vh' }}>
<CardContent
sx={{
bgcolor: 'rgba(255, 255, 255, 0.05)',
pt: '6vw',
minHeight: '5vw',
}}
>
<Typography sx={{ color: 'white' }}>{capeName}</Typography>
</CardContent>
@ -108,8 +115,8 @@ export default function CapeCard({
onClick={() => onAction(capeId)}
disabled={actionDisabled}
sx={{
borderRadius: '20px',
p: '5px 25px',
borderRadius: '2vw',
p: '0.5vw 2.5vw',
color: 'white',
backgroundColor: 'rgb(0, 134, 0)',
'&:hover': {