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"
|
grid-template-areas: "label value"
|
||||||
"item item"
|
"item item"
|
||||||
"minlabel maxlabel";
|
"minlabel maxlabel";
|
||||||
grid-template-rows: 20px 25px 15px;
|
grid-template-rows: 20px 25px 20px;
|
||||||
grid-template-columns: 160px 40px;
|
grid-template-columns: 160px 40px;
|
||||||
row-gap: 0.2em;
|
row-gap: 0.2em;
|
||||||
background-color: var(--setting_background);
|
background-color: var(--setting_background);
|
||||||
|
@@ -36,8 +36,8 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
<!---Slider Labels--->
|
<!---Slider Labels--->
|
||||||
<span class="setting_minlabel"><span style="top: -4px; position: relative;">{% if item["uitype"] == "slider" %}{{ item['min'] }}{% 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="top: -4px; position: relative;">{% if item["uitype"] == "slider" %}{{ item['max'] }}{% endif %}</span></span>
|
<span class="setting_maxlabel"><span style="position: relative;">{% if item["uitype"] == "slider" %}{{ item['max'] }}{% endif %}</span></span>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
Reference in New Issue
Block a user