From e129ab7b4123ac853fc96f6ff15a758f5ba2a902 Mon Sep 17 00:00:00 2001 From: Jorge Costa Date: Fri, 2 Jul 2021 09:19:47 +0100 Subject: [PATCH] Fix: missing link color on style properties to css var mapping. (#33150) --- packages/edit-site/src/components/editor/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/edit-site/src/components/editor/utils.js b/packages/edit-site/src/components/editor/utils.js index 508bd05eda6fd..c144a02d970d7 100644 --- a/packages/edit-site/src/components/editor/utils.js +++ b/packages/edit-site/src/components/editor/utils.js @@ -71,6 +71,7 @@ export const PRESET_METADATA = [ ]; const STYLE_PROPERTIES_TO_CSS_VAR_INFIX = { + linkColor: 'color', backgroundColor: 'color', background: 'gradient', };