From ebeca6e1380c8b76830aa81b0df9e3bd07d4c880 Mon Sep 17 00:00:00 2001 From: aritro2002 Date: Tue, 29 Oct 2024 14:10:13 +0530 Subject: [PATCH] fix: remove contact and password icon in safari (#747) Co-authored-by: Pritish Budhiraja --- src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.css b/src/index.css index a6f7ec31..569cce3f 100644 --- a/src/index.css +++ b/src/index.css @@ -7,3 +7,9 @@ outline: transparent !important; } } + +/* Remove contact and password icon in safari */ +input::-webkit-credentials-auto-fill-button, +input::-webkit-contacts-auto-fill-button { + width: 0 !important; +}