Skip to content

Commit

Permalink
fix: Correct MoonChip padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Kypsis committed Feb 14, 2023
1 parent 7885afc commit f14eb2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/theme/chip/chip_sizes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ class MoonChipSizes extends ThemeExtension<MoonChipSizes> with DiagnosticableTre
static final sm = MoonChipSizes(
height: MoonSizes.sizes.sm,
gap: MoonSizes.sizes.x5s,
padding: EdgeInsets.symmetric(horizontal: MoonSizes.sizes.x4s),
padding: EdgeInsets.symmetric(horizontal: MoonSizes.sizes.x3s),
borderRadius: MoonBorders.borders.interactiveXs,
textStyle: MoonTextStyles.heading.text14,
);

static final md = MoonChipSizes(
height: MoonSizes.sizes.md,
gap: MoonSizes.sizes.x4s,
padding: EdgeInsets.symmetric(horizontal: MoonSizes.sizes.x4s),
padding: EdgeInsets.symmetric(horizontal: MoonSizes.sizes.x3s),
borderRadius: MoonBorders.borders.interactiveSm,
textStyle: MoonTextStyles.heading.text14,
);
Expand Down

0 comments on commit f14eb2d

Please sign in to comment.