Skip to content

Commit

Permalink
feat: min width button
Browse files Browse the repository at this point in the history
  • Loading branch information
ByFishh committed Oct 9, 2024
1 parent 6a74112 commit 2e6c75f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const DeployUsingContract = ({
</div>
<DeployContractParams contracts={deployContracts} />
<VSCodeDivider className="divider" />
<VSCodeButton className="primary" type="submit">
<VSCodeButton className="submit-button" appearance="primary" type="submit">
Deploy with contract
</VSCodeButton>
{isPending && !logic.response && <Loader />}
Expand Down
2 changes: 1 addition & 1 deletion sidebar/src/components/deploy/script/DeployUsingScript.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const DeployUsingScript = ({
</div>
</div>
<VSCodeDivider className="divider" />
<VSCodeButton appearance="primary" type="submit">
<VSCodeButton className="submit-button" appearance="primary" type="submit">
Deploy with script
</VSCodeButton>
{isPending && !logic.response && <Loader />}
Expand Down
2 changes: 1 addition & 1 deletion sidebar/src/pages/InteractPage/InteractPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const InteractPage = (props: { vscode: VSCode; resourceManager: ResourceM
<InteractContracts wallets={logic.wallets} contracts={logic.contracts} vscode={props.vscode} />
<VSCodeDivider className="divider" />
<InteractParams contracts={logic.contracts} />
<VSCodeButton appearance="primary" type="submit">
<VSCodeButton className="submit-button" appearance="primary" type="submit">
Send transaction
</VSCodeButton>
{logic.isPending && !logic.response && <Loader />}
Expand Down

0 comments on commit 2e6c75f

Please sign in to comment.