From 4ab2c7f8859c5bd4c33eefac40e7c703e2ad9678 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Sat, 18 Apr 2020 19:00:40 +0700 Subject: [PATCH] fixed search input label text --- src/components/flow/FlowStamp/styles.scss | 9 ++++++--- src/components/input/InputText/index.tsx | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/flow/FlowStamp/styles.scss b/src/components/flow/FlowStamp/styles.scss index c9410d83..0ca5216d 100644 --- a/src/components/flow/FlowStamp/styles.scss +++ b/src/components/flow/FlowStamp/styles.scss @@ -72,12 +72,15 @@ padding: $gap; @include outer_shadow(); + + :global(.input_title) { + color: lighten($content_bg, 10%); + } } .search_icon { - fill: white; - opacity: 0.1; - stroke: white; + fill: lighten($content_bg, 8%); + stroke: lighten($content_bg, 8%); stroke-width: 0.5; pointer-events: none; touch-action: none; diff --git a/src/components/input/InputText/index.tsx b/src/components/input/InputText/index.tsx index c4cc4668..eae62ab5 100644 --- a/src/components/input/InputText/index.tsx +++ b/src/components/input/InputText/index.tsx @@ -75,7 +75,7 @@ const InputText: FC = ({ {title && ( -
+
{title}
)}