From e09b6d664990824e30bedad49b798f2eec271816 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Fri, 30 Oct 2020 13:49:24 +0000 Subject: [PATCH] Change binding icon colour --- .../src/components/userInterface/BindableInput.svelte | 6 ++++++ .../src/components/userInterface/PropertyControl.svelte | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/packages/builder/src/components/userInterface/BindableInput.svelte b/packages/builder/src/components/userInterface/BindableInput.svelte index 7a7a2cbb1d..76624abd06 100644 --- a/packages/builder/src/components/userInterface/BindableInput.svelte +++ b/packages/builder/src/components/userInterface/BindableInput.svelte @@ -47,5 +47,11 @@ background-color: var(--grey-2); border-top-right-radius: var(--border-radius-m); border-bottom-right-radius: var(--border-radius-m); + color: var(--grey-7); + font-size: 16px; + } + .icon:hover { + color: var(--ink); + cursor: pointer; } diff --git a/packages/builder/src/components/userInterface/PropertyControl.svelte b/packages/builder/src/components/userInterface/PropertyControl.svelte index baf4b81dac..e9dfb0abfc 100644 --- a/packages/builder/src/components/userInterface/PropertyControl.svelte +++ b/packages/builder/src/components/userInterface/PropertyControl.svelte @@ -156,5 +156,11 @@ background-color: var(--grey-2); border-top-right-radius: var(--border-radius-m); border-bottom-right-radius: var(--border-radius-m); + color: var(--grey-7); + font-size: 16px; + } + .icon:hover { + color: var(--ink); + cursor: pointer; }