File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -629,8 +629,14 @@ span wrapping svg or text */
629
629
word-break : break-word;
630
630
}
631
631
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
+ }
634
640
}
635
641
636
642
/* trailing action icon button */
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import {clsx} from 'clsx'
26
26
27
27
const LiBox = styled . li < SxProp > ( sx )
28
28
29
- export type ActionListSubItemProps = {
29
+ type ActionListSubItemProps = {
30
30
children ?: React . ReactNode
31
31
}
32
32
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export type {ActionListDescriptionProps} from './Description'
17
17
export type { ActionListLeadingVisualProps , ActionListTrailingVisualProps } from './Visuals'
18
18
export type { ActionListHeadingProps } from './Heading'
19
19
export type { ActionListTrailingActionProps } from './TrailingAction'
20
- export type { ActionListSubItemProps } from './Item'
21
20
22
21
/**
23
22
* Collection of list-related components.
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import type {
8
8
ActionListLeadingVisualProps ,
9
9
ActionListTrailingVisualProps ,
10
10
ActionListGroupHeadingProps ,
11
- ActionListSubItemProps ,
12
11
} from '../ActionList'
13
12
import { ActionList } from '../ActionList'
14
13
import { SubItem } from '../ActionList/Item'
@@ -27,7 +26,7 @@ import {toggleStyledComponent} from '../internal/utils/toggleStyledComponent'
27
26
const getSubnavStyles = ( depth : number ) => {
28
27
return {
29
28
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
31
30
fontWeight : depth > 0 ? 'normal' : null , // Sub-items don't get bolded
32
31
}
33
32
}
You can’t perform that action at this time.
0 commit comments