File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
src/blocks/ExtendedFeatures Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,10 @@ $block: '.#{$ns}ExtendedFeaturesBlock';
69
69
@include icon ();
70
70
71
71
display : block ;
72
- margin-bottom : $indentXXS ;
72
+
73
+ & -wrap {
74
+ margin-bottom : $indentXXS ;
75
+ }
73
76
}
74
77
75
78
@media (max-width : map-get ($gridBreakpoints , ' sm' )) {
Original file line number Diff line number Diff line change @@ -57,7 +57,11 @@ export const ExtendedFeaturesBlock = ({
57
57
58
58
return (
59
59
< Col className = { b ( 'item' ) } key = { text || itemTitle } sizes = { colSizes } >
60
- { iconData && < Image { ...iconData } className = { b ( 'icon' ) } /> }
60
+ { iconData && (
61
+ < div className = { b ( 'icon-wrap' ) } aria-hidden >
62
+ < Image { ...iconData } className = { b ( 'icon' ) } />
63
+ </ div >
64
+ ) }
61
65
< div className = { b ( 'container' ) } >
62
66
{ itemTitle &&
63
67
React . createElement (
You can’t perform that action at this time.
0 commit comments