fix(validator-management): decrease basic card sizes

This commit is contained in:
RadoslavDimchev 2024-05-09 18:38:26 +03:00 committed by Emil Ivanichkov
parent 41ffdb1eca
commit 2def855f0b

View File

@ -16,8 +16,8 @@ const ValidatorManagement = () => {
const isBasicCardColumn = width > 600 || width <= 475
const basicCardStyle = {
height: isBasicCardColumn ? 'calc(50% - 8px)' : '100%',
width: isBasicCardColumn ? '100%' : 'calc(50% - 8px)',
height: isBasicCardColumn ? 'calc(50% - 12px)' : '100%',
width: isBasicCardColumn ? '100%' : 'calc(50% - 12px)',
}
return (