Skip to content

Commit

Permalink
Merge pull request #110 from GetLuko/sami/fix/change-buttonbar-padding
Browse files Browse the repository at this point in the history
Sami/fix/change buttonbar padding
  • Loading branch information
ankisami authored Aug 24, 2023
2 parents 129d947 + cb32efa commit 021a0fa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Binary file modified packages/sandbox/e2e/android/screenshots/ButtonBar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/sandbox/e2e/ios/screenshots/ButtonBar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/streamline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getluko/streamline",
"version": "0.0.32",
"version": "0.0.33",
"author": "luko",
"description": "Luko Design System using react-native for iOS and Android",
"main": "dist/packages/streamline/index.js",
Expand Down
6 changes: 5 additions & 1 deletion packages/streamline/src/components/button-bar/button-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ export const ButtonBar = ({ buttons, isSkeleton = false, testID }: Props) => {
scrollEnabled={!isSkeleton}
horizontal={true}
showsHorizontalScrollIndicator={false}
contentContainerStyle={{ padding: spacing.md, flexDirection: 'row' }}
contentContainerStyle={{
paddingHorizontal: spacing.md,
paddingVertical: spacing.xs,
flexDirection: 'row',
}}
>
{buttonMenu.map((button, index) => (
<Box
Expand Down

0 comments on commit 021a0fa

Please sign in to comment.