pull/5449/head
lianahus 3 months ago committed by Aniket
parent 5d31dc8cfa
commit 80aae55684
  1. 4
      libs/remix-ui/vyper-compile-details/src/lib/vyperCompile.tsx

@ -66,9 +66,9 @@ export default function VyperCompile({ result, theme, themeStyle }: VyperCompile
return (
<div className='w-100 h-100 d-flex flex-row'>
<Tabs className="flex-column" style={{height: "fit-content", backgroundColor: 'var(--body-bg)'}} id="result" activeKey={active} onSelect={(key: any) => setActive(key)}>
<Tabs className="flex-column" style={{ height: "fit-content", backgroundColor: 'var(--body-bg)' }} id="result" activeKey={active} onSelect={(key: any) => setActive(key)}>
{tabContent.map((content, index) => (
<Tab className="border-top border-left p-4 bg-light" style={{width: '50rem', height: 'fit-content', minHeight: '25rem'}} eventKey={content.eventKey} title={content.tabHeadingText} as={'span'} key={`${index}-${content.eventKey}`}>
<Tab className="border-top border-left p-4 bg-light" style={{ width: '50rem', height: 'fit-content', minHeight: '25rem' }} eventKey={content.eventKey} title={content.tabHeadingText} as={'span'} key={`${index}-${content.eventKey}`}>
<div className="d-flex flex-column w-90 justify-content-center mx-auto rounded-2">
<CopyToClipboard getContent={() => (content.eventKey !== 'abi' ? content.tabPayload : JSON.stringify(result['abi']))}>
<Button

Loading…
Cancel
Save