Fix duplicated bottom borders

This commit is contained in:
Sakura Knoll
2022-01-02 18:06:21 +09:00 Unverified
parent c90058c199
commit f3c6b8268a
+8 -1
View File
@@ -77,7 +77,14 @@ const StigmataSetPage = ({
HP : {stigmataSetItem.hp} / ATK : {stigmataSetItem.atk} / DEF
: {stigmataSetItem.def} / CRT : {stigmataSetItem.crt}
</Box>
<Paragraph m={0} p={2} sx={{ borderBottom: 'default' }}>
<Paragraph
m={0}
p={2}
sx={{
borderBottom: 'default',
'&:last-child': { borderBottom: 'none' },
}}
>
{stigmataSetItem.skill.description}
</Paragraph>
</React.Fragment>