diff --git a/projects/plugins/jetpack/changelog/fix-conflict-with-rnmobile-build b/projects/plugins/jetpack/changelog/fix-conflict-with-rnmobile-build new file mode 100644 index 000000000000..c03fc7adc56c --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-conflict-with-rnmobile-build @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Remove code in native files that was causing the rnmobile build to fail. diff --git a/projects/plugins/jetpack/extensions/blocks/contact-info/style.native.scss b/projects/plugins/jetpack/extensions/blocks/contact-info/style.native.scss index 90b17dbcfe3e..f1905854b524 100644 --- a/projects/plugins/jetpack/extensions/blocks/contact-info/style.native.scss +++ b/projects/plugins/jetpack/extensions/blocks/contact-info/style.native.scss @@ -1,5 +1,3 @@ -@import '@automattic/jetpack-base-styles/gutenberg-base-styles'; - .placeholder { color: $gray; } diff --git a/projects/plugins/jetpack/extensions/shared/icons.native.scss b/projects/plugins/jetpack/extensions/shared/icons.native.scss new file mode 100644 index 000000000000..efa0f2460efc --- /dev/null +++ b/projects/plugins/jetpack/extensions/shared/icons.native.scss @@ -0,0 +1,19 @@ +.jetpack-gutenberg-social-icon { + fill: $gray-700; + + &.is-facebook { + fill: var( --color-facebook ); + } + &.is-twitter { + fill: var( --color-twitter ); + } + &.is-linkedin { + fill: var( --color-linkedin ); + } + &.is-tumblr { + fill: var( --color-tumblr ); + } + &.is-google { + fill: var( --color-gplus ); + } +}