From c16f8182b3aaf39ec78c2e1edd210da284cc7e3a Mon Sep 17 00:00:00 2001 From: Tristan-H11 Date: Wed, 23 Mar 2022 15:45:30 +0100 Subject: [PATCH] For whatever reason `accent-color` is not supported in my chrome v99, even though it should be since v93. (#288) --- .../components/inputs/text-input/text-input.component.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/components/inputs/text-input/text-input.component.scss b/src/core/components/inputs/text-input/text-input.component.scss index 1a92daed..25d28610 100644 --- a/src/core/components/inputs/text-input/text-input.component.scss +++ b/src/core/components/inputs/text-input/text-input.component.scss @@ -34,6 +34,7 @@ input { padding: 8px 16px 8px 16px; border: 0; border-radius: 8px; + outline: none; &::placeholder { color: $placeholder-font @@ -53,11 +54,11 @@ input { border: 2px solid; border-color: list.nth($colors, 1); &:focus { - outline: none; } } @else { &:focus { - accent-color: list.nth($colors, 1); + border: 2px solid; + border-color: list.nth($colors, 1); } } }