Skip to content

Commit

Permalink
fix alignment on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
vidvidvid committed Dec 5, 2024
1 parent c7a69cf commit cda880a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/ui/app/_components/dialogs/manage/BorrowTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const BorrowTab = ({ maxAmount, isLoadingMax, totalStats }: BorrowTabProps) => {
]}
/>

<div className="grid grid-cols-2 gap-x-8">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 lg:gap-x-8">
<div className="space-y-4 content-center">
<div className="flex justify-between text-xs text-gray-400">
<span>MIN BORROW</span>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/app/_components/dialogs/manage/RepayTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const RepayTab = ({ maxAmount, isLoadingMax, totalStats }: RepayTabProps) => {
availableStates={[HFPStatus.CRITICAL]}
/>

<div className="grid grid-cols-2 gap-x-8">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 lg:gap-x-8">
<div className="space-y-4 content-center">
<div className="flex justify-between text-xs text-gray-400">
<span>CURRENTLY BORROWING</span>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/app/_components/dialogs/manage/SupplyTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const SupplyTab = ({
handleUtilization={handleUtilization}
/>

<div className="grid grid-cols-2 gap-x-8">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 lg:gap-x-8">
<div className="space-y-4 content-center">
<div className="space-y-4">
<div className="flex justify-between text-xs text-gray-400 uppercase">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/app/_components/dialogs/manage/WithdrawTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const WithdrawTab = ({
]}
/>

<div className="grid grid-cols-2 gap-x-8">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 lg:gap-x-8">
<div className="space-y-4 content-center">
<div className="flex justify-between text-xs text-gray-400 uppercase">
<span>Market Supply Balance</span>
Expand Down

0 comments on commit cda880a

Please sign in to comment.