Skip to content

Commit

Permalink
Minor copy and responsive edit
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Jul 30, 2024
1 parent 56708df commit 4d2d9cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion plugins/emergency-multisig/pages/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default function Create() {
<div className="mt-6 flex w-full flex-col items-center">
<div>
<span className="text-md mb-2 block font-normal text-neutral-700 ">
{signersWithPubKey || 0} signer(s) registered the public key
{signersWithPubKey || 0} signer(s) registered their public key
</span>
</div>
<Button
Expand Down
15 changes: 10 additions & 5 deletions plugins/members/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function MembersList() {
<MainSection>
<div className="flex w-full max-w-[1280] flex-col gap-x-10 gap-y-8 lg:flex-row">
<div className="flex flex-1 flex-col gap-y-6">
<div className="flex items-center justify-between">
<div className="flex items-start justify-between">
<If condition={toggleValue === "all" || toggleValue === "verified"}>
<Then>
<Heading size="h1">Delegates</Heading>
Expand All @@ -48,10 +48,15 @@ export default function MembersList() {
</Else>
</If>

<ToggleGroup isMultiSelect={false} onChange={onToggleChange} value={toggleValue}>
<Toggle value="all" label="Registered" />
<Toggle value="verified" label="Verified" />
<Toggle value="multisig" label="Security council" />
<ToggleGroup
isMultiSelect={false}
onChange={onToggleChange}
value={toggleValue}
className="flex justify-end"
>
<Toggle value="all" label="Registered" className="rounded-lg" />
<Toggle value="verified" label="Verified" className="rounded-lg" />
<Toggle value="multisig" label="Security council" className="rounded-lg" />
</ToggleGroup>
</div>
<If condition={toggleValue === "all" || toggleValue === "verified"}>
Expand Down

0 comments on commit 4d2d9cd

Please sign in to comment.