File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 88 flex-direction : column ;
99 }
1010
11- & __close-button button .pf-v6-c-button {
12- --pf-v6-c-button--Color : var (--pf-t--global--text--color--inverse );
11+ span .pf-v6-c-button__icon {
12+ color : var (--pf-t--global--text--color--inverse );
1313 }
1414}
Original file line number Diff line number Diff line change 11import * as React from 'react' ;
2- import { Button , Flex , Title } from '@patternfly/react-core' ;
2+ import { Button , Flex } from '@patternfly/react-core' ;
33
44interface QuickStartTileHeaderProps {
55 name : string ;
@@ -13,11 +13,9 @@ const QuickStartTileHeader: React.FC<QuickStartTileHeaderProps> = ({
1313 onSelect,
1414} ) => (
1515 < Flex flexWrap = { { default : 'nowrap' } } >
16- < Title headingLevel = "h3" data-test = "title" id = { quickStartId } >
17- < Button variant = "link" isInline onClick = { onSelect } >
18- { name }
19- </ Button >
20- </ Title >
16+ < Button data-test = "title" id = { quickStartId } variant = "link" isInline onClick = { onSelect } >
17+ { name }
18+ </ Button >
2119 </ Flex >
2220) ;
2321
You can’t perform that action at this time.
0 commit comments