Fix for settings clipping

This commit is contained in:
ebolam
2022-08-15 19:19:24 -04:00
parent 8cd14713f9
commit fa37484eb3
2 changed files with 3 additions and 3 deletions

View File

@@ -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);

View File

@@ -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 %}