Skip to content

Commit d962920

Browse files
committed
fix margin
1 parent 25690dd commit d962920

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

packages/react/src/ActionList/ActionList.module.css

+8-2
Original file line numberDiff line numberDiff line change
@@ -629,8 +629,14 @@ span wrapping svg or text */
629629
word-break: break-word;
630630
}
631631

632-
.SubGroup .ItemLabel {
633-
font-size: var(--text-body-size-small);
632+
.SubGroup {
633+
& .ItemLabel {
634+
font-size: var(--text-body-size-small);
635+
}
636+
637+
& .ActionListItem {
638+
margin-inline: 0;
639+
}
634640
}
635641

636642
/* trailing action icon button */

packages/react/src/ActionList/Item.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {clsx} from 'clsx'
2626

2727
const LiBox = styled.li<SxProp>(sx)
2828

29-
export type ActionListSubItemProps = {
29+
type ActionListSubItemProps = {
3030
children?: React.ReactNode
3131
}
3232

packages/react/src/ActionList/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export type {ActionListDescriptionProps} from './Description'
1717
export type {ActionListLeadingVisualProps, ActionListTrailingVisualProps} from './Visuals'
1818
export type {ActionListHeadingProps} from './Heading'
1919
export type {ActionListTrailingActionProps} from './TrailingAction'
20-
export type {ActionListSubItemProps} from './Item'
2120

2221
/**
2322
* Collection of list-related components.

packages/react/src/NavList/NavList.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import type {
88
ActionListLeadingVisualProps,
99
ActionListTrailingVisualProps,
1010
ActionListGroupHeadingProps,
11-
ActionListSubItemProps,
1211
} from '../ActionList'
1312
import {ActionList} from '../ActionList'
1413
import {SubItem} from '../ActionList/Item'
@@ -27,7 +26,7 @@ import {toggleStyledComponent} from '../internal/utils/toggleStyledComponent'
2726
const getSubnavStyles = (depth: number) => {
2827
return {
2928
paddingLeft: depth > 0 ? depth + 2 : null, // Indent sub-items
30-
fontSize: depth > 0 ? 0 : null, // Reduce font size of sub-items
29+
fontSize: depth > 0 ? 0 : 1, // Reduce font size of sub-items
3130
fontWeight: depth > 0 ? 'normal' : null, // Sub-items don't get bolded
3231
}
3332
}

0 commit comments

Comments
 (0)