style: adjust wrapper background gradient to 49px to match exact table header height

This commit is contained in:
2026-05-31 06:23:54 +05:00
parent 0afc51f576
commit c1a00d34ab
+1 -1
View File
@@ -391,7 +391,7 @@
{% macro table_container_open(id, max_height="68vh") %} {% macro table_container_open(id, max_height="68vh") %}
<!-- Table Container --> <!-- Table Container -->
<div class="backdrop-blur-xl border border-slate-900 rounded-3xl shadow-2xl mb-8 overflow-hidden" style="background: linear-gradient(to bottom, #162031 58px, rgba(30, 41, 59, 0.4) 58px);"> <div class="backdrop-blur-xl border border-slate-900 rounded-3xl shadow-2xl mb-8 overflow-hidden" style="background: linear-gradient(to bottom, #162031 49px, rgba(30, 41, 59, 0.4) 49px);">
<div id="{{ id }}-container" class="overflow-x-auto overflow-y-auto scrollbar-thin rounded-[22px]" style="max-height: {{ max_height }};"> <div id="{{ id }}-container" class="overflow-x-auto overflow-y-auto scrollbar-thin rounded-[22px]" style="max-height: {{ max_height }};">
{% endmacro %} {% endmacro %}