style: apply gradient background on outer table wrapper to seamlessly cover scrollbar track

This commit is contained in:
2026-05-31 06:20:47 +05:00
parent 61fd356846
commit 0afc51f576
+2 -2
View File
@@ -391,8 +391,8 @@
{% macro table_container_open(id, max_height="68vh") %} {% macro table_container_open(id, max_height="68vh") %}
<!-- Table Container --> <!-- Table Container -->
<div class="bg-[#1e293b]/40 backdrop-blur-xl border border-slate-900 rounded-3xl shadow-2xl mb-8 overflow-hidden"> <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 id="{{ id }}-container" class="overflow-x-auto overflow-y-auto scrollbar-thin rounded-[22px]" style="max-height: {{ max_height }}; background: linear-gradient(to bottom, #162031 58px, transparent 58px);"> <div id="{{ id }}-container" class="overflow-x-auto overflow-y-auto scrollbar-thin rounded-[22px]" style="max-height: {{ max_height }};">
{% endmacro %} {% endmacro %}
{% macro table_container_close(id) %} {% macro table_container_close(id) %}