mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
ADD: Maximum width for wallet carousel item
This commit is contained in:
parent
bb2c3c139c
commit
b008fa4e46
1 changed files with 1 additions and 1 deletions
|
@ -1978,7 +1978,7 @@ const WalletCarouselItem = ({ item, index, onPress, handleLongPress }) => {
|
|||
};
|
||||
|
||||
const sliderWidth = width * 1;
|
||||
const itemWidth = width * 0.82;
|
||||
const itemWidth = width > 375 ? 375 : width * 0.82;
|
||||
const sliderHeight = 190;
|
||||
|
||||
export class WalletsCarousel extends Component {
|
||||
|
|
Loading…
Add table
Reference in a new issue