From bc26170bdb276989d954a0e33f528bfa95bdeda3 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Wed, 29 Oct 2025 13:00:25 +0100 Subject: [PATCH] fix --- src/components/TextInput/TextInput.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/TextInput/TextInput.scss b/src/components/TextInput/TextInput.scss index 17f9883136..670992e39b 100644 --- a/src/components/TextInput/TextInput.scss +++ b/src/components/TextInput/TextInput.scss @@ -12,6 +12,7 @@ border: 0; outline: 0; background: $inputBackgroundColor; + color: #000; font-size: 16px; width: 100%; min-width: calc(var(--modal-min-width) * (1 - var(--modal-label-ratio))); @@ -20,6 +21,10 @@ vertical-align: top; resize: both; + &:disabled { + color: $mainTextColor; + } + &:focus { @include placeholder { opacity: 0;