mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Fix for settings clipping
This commit is contained in:
@@ -168,7 +168,7 @@
|
||||
grid-template-areas: "label value"
|
||||
"item item"
|
||||
"minlabel maxlabel";
|
||||
grid-template-rows: 20px 25px 15px;
|
||||
grid-template-rows: 20px 25px 20px;
|
||||
grid-template-columns: 160px 40px;
|
||||
row-gap: 0.2em;
|
||||
background-color: var(--setting_background);
|
||||
|
@@ -36,8 +36,8 @@
|
||||
{% endif %}
|
||||
</span>
|
||||
<!---Slider Labels--->
|
||||
<span class="setting_minlabel"><span style="top: -4px; position: relative;">{% if item["uitype"] == "slider" %}{{ item['min'] }}{% endif %}</span></span>
|
||||
<span class="setting_maxlabel"><span style="top: -4px; position: relative;">{% if item["uitype"] == "slider" %}{{ item['max'] }}{% endif %}</span></span>
|
||||
<span class="setting_minlabel"><span style="position: relative;">{% if item["uitype"] == "slider" %}{{ item['min'] }}{% endif %}</span></span>
|
||||
<span class="setting_maxlabel"><span style="position: relative;">{% if item["uitype"] == "slider" %}{{ item['max'] }}{% endif %}</span></span>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
Reference in New Issue
Block a user