From 380c16c8dd9a1469a9c5fd70b8ae667c910bbf0e Mon Sep 17 00:00:00 2001 From: Prabhat Khera <91852476+prabhat-org@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:31:39 +1300 Subject: [PATCH] increase the font size for search panel (#10838) --- app/react/components/CodeEditor.module.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/app/react/components/CodeEditor.module.css b/app/react/components/CodeEditor.module.css index 0fb832a14..d7ff66ce2 100644 --- a/app/react/components/CodeEditor.module.css +++ b/app/react/components/CodeEditor.module.css @@ -123,3 +123,18 @@ @apply th-dark:bg-gray-iron-10; @apply th-highcontrast:bg-black; } + +.root :global(.cm-textfield) { + border: 1px solid var(--border-form-control-color); + background-color: var(--bg-inputbox); + color: var(--text-form-control-color); + @apply text-xs; +} + +.root :global(.cm-button) { + @apply text-xs; +} + +.root :global(.cm-panel.cm-search label) { + @apply text-xs; +}