Skip to content

Commit

Permalink
Undo fallback color to transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
oakesjosh committed Feb 25, 2025
1 parent 942dd59 commit 8e73634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blocks/advancedheading/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ function KadenceAdvancedHeading(props) {
'' !== previewMarginLeft ? getSpacingOptionOutput(previewMarginLeft, marginType) : undefined,
lineHeight: previewLineHeight ? previewLineHeight + (fontHeightType ? fontHeightType : '') : undefined,
color:
color && (!enableTextGradient || textGradient !== '') ? KadenceColorOutput(color) : 'transparent',
color && (!enableTextGradient || textGradient !== '') ? KadenceColorOutput(color) : undefined,
fontSize: previewFontSize
? getFontSizeOptionOutput(previewFontSize, sizeType ? sizeType : 'px')
: undefined,
Expand Down

0 comments on commit 8e73634

Please sign in to comment.