diff --git a/src/renderer/DApps/Dapps.js b/src/renderer/DApps/Dapps.js index 09b506c..66c0d2f 100644 --- a/src/renderer/DApps/Dapps.js +++ b/src/renderer/DApps/Dapps.js @@ -16,6 +16,8 @@ function DappButton({ dapp }) { rightIcon={dapp.url ? : } isDisabled={!dapp.url} _hover={{ textDecoration: 'none' }} + flexGrow={1} + maxWidth="36%" > {dapp.label} @@ -25,19 +27,17 @@ function DappButton({ dapp }) { export function Dapps() { const { data: dapps } = useDapps(); return ( - - - - Available DApps: - - - {dapps.length > 0 ? ( - dapps.map((dapp) => ) - ) : ( - - )} - - + + + Available DApps: + + + {dapps.length > 0 ? ( + dapps.map((dapp) => ) + ) : ( + + )} + ); }