Skip to content

Commit

Permalink
fix(IT Wallet): [SIW-1899] Fix filter tabs padding within wallet home…
Browse files Browse the repository at this point in the history
… screen (#6517)

## Short description
This PR adjusts paddings in the filter chips within the wallet home
screen

## List of changes proposed in this pull request
- Adjusted paddings in `WalletCategoryFilterTabs` component

## How to test
Run the app, check that everything is ok and paddings are [aligned with
the Figma
design](https://www.figma.com/design/4Pbt3wd9WoPnAXVMkAA6UT/App-IO-2.0---Design-System?node-id=11659-113426&t=lUQmAFWv9kFH888E-4).

## Demo


https://github.com/user-attachments/assets/e34c66c1-90bd-4ac9-8163-1a67eb8a43f2
  • Loading branch information
mastro993 authored Dec 9, 2024
1 parent d26118f commit 1dbc898
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ts/features/wallet/components/WalletCategoryFilterTabs.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import {
IOVisualCostants,
TabItem,
TabNavigation,
VSpacer
TabNavigation
} from "@pagopa/io-app-design-system";
import React from "react";
import { StyleSheet, View } from "react-native";
Expand Down Expand Up @@ -64,13 +63,14 @@ const WalletCategoryFilterTabs = () => {
))
]}
</TabNavigation>
<VSpacer size={16} />
</View>
);
};

const styles = StyleSheet.create({
container: {
paddingTop: 8,
paddingBottom: 16,
marginHorizontal: -IOVisualCostants.appMarginDefault * 2,
paddingHorizontal: IOVisualCostants.appMarginDefault
}
Expand Down

0 comments on commit 1dbc898

Please sign in to comment.