From 164545bb26c8fd900662855747f40d2b5e81271c Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Fri, 22 Apr 2022 23:34:02 +0300 Subject: [PATCH] frontend: add placeholder color for message input --- frontend/src/components/pages/main/ChannelView.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/components/pages/main/ChannelView.svelte b/frontend/src/components/pages/main/ChannelView.svelte index d74017d..1a66ef8 100644 --- a/frontend/src/components/pages/main/ChannelView.svelte +++ b/frontend/src/components/pages/main/ChannelView.svelte @@ -81,6 +81,12 @@ color: currentColor; border-radius: var(--radius-md); padding: var(--space-sm); + font-size: inherit; + line-height: inherit; + } + + .message-input::placeholder { + color: var(--foreground-color-3); }