From 09ba400d09d1d3c8389c6bdfcf38c40c4dfaec52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tesa=C5=99?= Date: Mon, 26 May 2025 19:40:08 +0200 Subject: [PATCH] fix(modal): make textarea font actually monospace Modal `textarea` element has this class `text-monospace`, but there is actually no CSS definition that sets the monospace font for it (neither in custom SCSS files, nor in included libs). This commit fixes the issue by setting `monospace` `font-family` for the `textarea`, greatly enhancing UX of configuration editing in UI. --- frontend/scss/tabler-extra.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/scss/tabler-extra.scss b/frontend/scss/tabler-extra.scss index 3ddd0ed4d..c56aedbce 100644 --- a/frontend/scss/tabler-extra.scss +++ b/frontend/scss/tabler-extra.scss @@ -167,4 +167,5 @@ $pink: #f66d9b; textarea.form-control.text-monospace { font-size: 12px; + font-family: monospace; }