From f24374f04bd4503a2fe5d3370b4de820a8bf3217 Mon Sep 17 00:00:00 2001 From: stephann <3025661+stephannv@users.noreply.github.com> Date: Wed, 26 Mar 2025 10:19:21 -0300 Subject: [PATCH] Remove relative from table component Signed-off-by: stephann <3025661+stephannv@users.noreply.github.com> --- lib/ruby_ui/table/table.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ruby_ui/table/table.rb b/lib/ruby_ui/table/table.rb index d3f2c373..da97f3a7 100644 --- a/lib/ruby_ui/table/table.rb +++ b/lib/ruby_ui/table/table.rb @@ -3,7 +3,7 @@ module RubyUI class Table < Base def view_template(&block) - div(class: "relative w-full overflow-auto") do + div(class: "w-full overflow-auto") do table(**attrs, &block) end end