Skip to content

Commit

Permalink
APT-1665
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorginaShall committed Jan 23, 2025
1 parent 6f9ec21 commit cfdbc72
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/stakingPoolDetailsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ const StakingPoolDetailsView: React.FC<
return (
<div
className="relative overflow-y-auto max-h-[calc(90vh-10vh)] sm:max-h-[calc(90vh-15vh)]
scrollbar-thin scrollbar-thumb-gray1 scrollbar-track-gray1 hover:scrollbar-thumb-gray1 pb-2"
scrollbar-thin scrollbar-thumb-gray1 scrollbar-track-gray1 hover:scrollbar-thumb-gray1 pb-2
pr-4"
>
<div className="items-center flex justify-between py-1 lg:py-7.5">
<div className="max-lg:ms-1 items-center flex">
Expand Down
4 changes: 3 additions & 1 deletion src/components/withdrawZilView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ const WithdrawZilView: React.FC = () => {
unstakingItems.length > 0 ? (

<div className="grid grid-cols-1 gap-4 lg:gap-5 overflow-y-auto max-h-[calc(90vh-30vh)]
scrollbar-thin scrollbar-thumb-gray1 scrollbar-track-gray1 hover:scrollbar-thumb-gray1 lg:pb-10">
scrollbar-thin scrollbar-thumb-gray1 scrollbar-track-gray1 hover:scrollbar-thumb-gray1 lg:pb-10
pr-4
">
{
unstakingItems.map((item, claimIdx) => (
<div
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ const HomePage = () => {
!isWalletConnected ? (
<LoginView />
) : stakingPoolForView ? (
<div className="bg-black xs:pt-5 lg:pt-7.5 xs:px-5 lg:px-7.5 rounded-2.5xl overflow-y-auto max-h-[80vh]
scrollbar-thin scrollbar-thumb-gray1 scrollbar-track-gray1 hover:scrollbar-thumb-gray1">
<div className="bg-black xs:pt-5 lg:pt-7.5 xs:px-5 lg:px-7.5 rounded-2.5xl max-h-[80vh]
">
<StakingPoolDetailsView
selectStakingPoolForStaking={(stakingPoolId) => {
selectStakingPoolForView(null);
Expand Down

0 comments on commit cfdbc72

Please sign in to comment.