diff --git a/settings.html b/settings.html index c207f36..6741efc 100644 --- a/settings.html +++ b/settings.html @@ -102,6 +102,12 @@ margin-left: 0.8rem; } /* Buttons */ + .buttons { + display: flex; /* Flex-Layout */ + justify-content: flex-end; /* nach rechts schieben */ + gap: 1rem; /* Abstand zwischen den Buttons */ + margin-top: 1rem; /* wenn Du noch Abstand nach oben brauchst */ + } button{ border-radius: 8px; padding: 0.5em 1.2em; @@ -118,11 +124,21 @@ } /* Infotext */ - .ollama-info { - font-size: 0.95rem; - color: #dc2626; - text-align: center; - margin-top: 0.8rem; + #ollama-model-selectors label { + display: flex; + align-items: center; + gap: 0.6em; + margin-bottom: 0.3em; + } + #ollama-model-selectors select { + min-width: 100px; + max-width: 180px; + padding: 0.35em 0.5em; + border-radius: 6px; + font-size: 1rem; + border: 1.2px solid #cbd5e1; + background: #f8fafc; + color: #334155; }