From 39c33b068672588ab5bc2c4b99671c2cb1ba99da Mon Sep 17 00:00:00 2001 From: Sylvain Date: Wed, 6 Apr 2022 12:32:41 +0200 Subject: [PATCH] (style) fix placeholder appearance Credits goes to @Vincent --- app/frontend/src/stylesheets/modules/form/form.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/frontend/src/stylesheets/modules/form/form.scss b/app/frontend/src/stylesheets/modules/form/form.scss index 8912fc258..d99549ffc 100644 --- a/app/frontend/src/stylesheets/modules/form/form.scss +++ b/app/frontend/src/stylesheets/modules/form/form.scss @@ -52,6 +52,10 @@ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; + &::placeholder { + font-weight: 400; + color: var(--gray-soft-darkest); + } &:focus { outline: none; box-shadow: 0 0 0 2px var(--information); @@ -107,4 +111,4 @@ margin-top: 0.4rem; color: var(--error); } -} \ No newline at end of file +}