Skip to content

Commit

Permalink
feat(utilities): merge utilities components
Browse files Browse the repository at this point in the history
- Resolve merge conflicts
- Add AMO Harvest Tool by Amrit & TBD
- Add Contract Params Dashboard by Build3rsLabs
- Enhance mobile display
- Add responsive width classes (w-full sm:w-[48%] lg:w-1/4)
  • Loading branch information
QuenumGerald committed Oct 22, 2024
1 parent fb781e7 commit cd6501a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/utilities/Utilities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const Utilities = () => {
{utilities.map((utility) => (
<div
key={utility.label}
className="w-1/4 rounded border border-grey10inverse bg-grey15inverse dark:border-grey10 dark:bg-grey15"
className="w-full sm:w-[48%] lg:w-1/4 rounded border border-grey10inverse bg-grey15inverse dark:border-grey10 dark:bg-grey15"
>
<p className="border-b border-grey10inverse px-4 py-2 dark:border-grey10">
{utility.label}
Expand All @@ -62,7 +62,7 @@ export const Utilities = () => {
</div>
<Button
variant="ghost"
className="h-8 w-full border border-bronze1 text-base lg:w-max"
className="h-8 min-w-[5rem] max-w-[6rem] border border-bronze1 text-base"
onClick={() => windowOpen(utility.url)}
>
Open
Expand Down

0 comments on commit cd6501a

Please sign in to comment.