Skip to content

Commit 09ba400

Browse files
authored
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.
1 parent f327c1e commit 09ba400

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

frontend/scss/tabler-extra.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,5 @@ $pink: #f66d9b;
167167

168168
textarea.form-control.text-monospace {
169169
font-size: 12px;
170+
font-family: monospace;
170171
}

0 commit comments

Comments
 (0)