style: use overlay scrollbar styling for tables to eliminate background width gap on the right

This commit is contained in:
2026-05-31 06:13:39 +05:00
parent 42d6910ae7
commit 360c9edcef
3 changed files with 8 additions and 13 deletions
+1 -1
View File
@@ -392,7 +392,7 @@
{% macro table_container_open(id, max_height="68vh") %}
<!-- Table Container -->
<div class="bg-[#1e293b]/40 backdrop-blur-xl border border-slate-900 rounded-3xl shadow-2xl mb-8 overflow-hidden">
<div id="{{ id }}-container" class="overflow-auto scrollbar-thin rounded-[22px]" style="max-height: {{ max_height }};">
<div id="{{ id }}-container" class="overflow-x-auto overflow-y-overlay scrollbar-thin rounded-[22px]" style="max-height: {{ max_height }};">
{% endmacro %}
{% macro table_container_close(id) %}