diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-02 10:49:21 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-02 23:15:26 +0200 |
commit | a8050cf401c2d55fb8586b1e4c45a470b12b72f7 (patch) | |
tree | 14564657e1dbe9d5ed0d4fc28faeea69465ebfc2 | |
parent | b4ebf75f816a2da61fab8e6275964b5d4858a64c (diff) | |
download | Ishtar-a8050cf401c2d55fb8586b1e4c45a470b12b72f7.tar.bz2 Ishtar-a8050cf401c2d55fb8586b1e4c45a470b12b72f7.zip |
🐛 fix town autocomplete input
-rw-r--r-- | scss/custom.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scss/custom.scss b/scss/custom.scss index 88cff1548..2d8470890 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -1057,11 +1057,15 @@ ul.compact{ cursor: pointer; } +.input-group > .form-control.ui-autocomplete-input { + min-width: 10%; +} + .ui-autocomplete { font-size: 0.7em; z-index: 10000 !important; width: 350px; - border: 5px solid $border-color; + border: 5px solid $border-color; outline: none; } |