Skip to content

Commit

Permalink
decrease spacing for checkbox and radio fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-figma committed Jun 24, 2024
1 parent 309fdde commit 42cce75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/figma/compositions/Cards.figma.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ figma.connect(Card, "<FIGMA_CARDS_CARD>", {
),
});

// TODO: CC NESTED PROPS document these
figma.connect(PricingCard, "<FIGMA_CARDS_PRICING_CARD>", {
props: {
textHeading: figma.nestedProps("Text Heading", {
Expand Down Expand Up @@ -71,6 +70,7 @@ figma.connect(PricingCard, "<FIGMA_CARDS_PRICING_CARD>", {
/>
),
});

figma.connect(ProductInfoCard, "<FIGMA_CARDS_PRODUCT_INFO_CARD>", {
props: {
textProps: figma.nestedProps("Text", {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/primitives/Checkbox/checkbox.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
align-items: center;
column-gap: var(--sds-size-space-400);
display: grid;
grid-template-columns: var(--sds-size-space-400) 1fr;
grid-template-columns: var(--sds-size-space-300) 1fr;
row-gap: var(--sds-size-space-100);
width: 100%;

Expand Down
2 changes: 1 addition & 1 deletion src/ui/primitives/Radio/radio.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
align-items: center;
column-gap: var(--sds-size-space-400);
display: grid;
grid-template-columns: var(--sds-size-space-400) 1fr;
grid-template-columns: var(--sds-size-space-300) 1fr;
row-gap: var(--sds-size-space-100);
width: 100%;

Expand Down

0 comments on commit 42cce75

Please sign in to comment.