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';
6969 @include icon ();
7070
7171 display : block ;
72- margin-bottom : $indentXXS ;
72+
73+ & -wrap {
74+ margin-bottom : $indentXXS ;
75+ }
7376 }
7477
7578 @media (max-width : map-get ($gridBreakpoints , ' sm' )) {
Original file line number Diff line number Diff line change @@ -57,7 +57,11 @@ export const ExtendedFeaturesBlock = ({
5757
5858 return (
5959 < 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+ ) }
6165 < div className = { b ( 'container' ) } >
6266 { itemTitle &&
6367 React . createElement (
You can’t perform that action at this time.
0 commit comments