From dec1f29effe59c0d08d0dc17d79fce2daf2891c9 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Thu, 31 Mar 2022 02:23:03 -0600 Subject: [PATCH] set the opacity of the placeholder text for an input field to make it consistent --- src/css/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/css/base.css b/src/css/base.css index a10201b..b0d16ee 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -103,6 +103,10 @@ object[type="image/svg+xml"]:not([width]) { width: fit-content; } +::placeholder { + opacity: 0.5; +} + @supports (scrollbar-width: thin) { body * { scrollbar-width: thin; -- 2.11.0