Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/binary-com/deriv-app
Browse files Browse the repository at this point in the history
  • Loading branch information
heorhi-deriv committed Nov 24, 2023
2 parents c7ecc83 + fd6b42f commit 544d99a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
11 changes: 0 additions & 11 deletions packages/wallets/src/AppContent.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,3 @@
position: absolute;
z-index: 1;
}

::-webkit-scrollbar {
width: 1.2rem;
height: 1.2rem;

&-thumb {
border: 0.4rem solid #fff;
border-radius: 4rem;
background: var(--state-active, #d6dadb);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const WalletButton: React.FC<WalletButtonProps> = ({
} as const;

return (
<button className={buttonClassNames} disabled={disabled || isLoading} onClick={onClick} type={type}>
<button className={buttonClassNames} disabled={disabled} onClick={onClick} type={type}>
{isLoading && (
<div className='wallets-button__loader'>
<Loader color={isContained ? loaderColorMapper[color] : '#85ACB0'} isFullScreen={false} />
Expand Down
4 changes: 4 additions & 0 deletions packages/wallets/src/features/cashier/WalletCashier.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@
@include mobile {
padding: 2.4rem 1.6rem;
}

&::-webkit-scrollbar {
display: none;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
overflow: auto;
}

&::-webkit-scrollbar {
display: none;
}

&__row {
width: 100%;
display: flex;
Expand Down

0 comments on commit 544d99a

Please sign in to comment.