diff --git a/VoteStakeRegistry/components/Account/LockTokensModal.tsx b/VoteStakeRegistry/components/Account/LockTokensModal.tsx index 9eaafbe37c..7662e523a0 100644 --- a/VoteStakeRegistry/components/Account/LockTokensModal.tsx +++ b/VoteStakeRegistry/components/Account/LockTokensModal.tsx @@ -470,7 +470,7 @@ const LockTokensModal = ({ [...fixedlockupPeriods.filter((_, i) => i%2 === 0), lockupPeriods[lockupLen-1]] .map((p) => p.display) : [ - ...fixedlockupPeriods.slice(Math.floor(withinPeriod/2), Math.floor(withinPeriod/2)+5), + ...fixedlockupPeriods.slice(Math.floor(withinPeriod/2), Math.floor(withinPeriod/2)+6), lockupPeriods[lockupLen-1] ] .map((p) => p.display) diff --git a/components/ButtonGroup.tsx b/components/ButtonGroup.tsx index 9fa8aa559e..d9a2d4e746 100644 --- a/components/ButtonGroup.tsx +++ b/components/ButtonGroup.tsx @@ -44,7 +44,7 @@ const ButtonGroup: FunctionComponent = ({ key={`${v}${i}`} onClick={() => onChange(v)} style={{ - width: `${100 / values.length}%`, + width: `${98 / values.length}%`, }} > {names ? (unit ? names[i] + unit : names[i]) : unit ? v + unit : v}