-
Hi! I've noticed that there's a vertical scrollbar. How can this be removed? This is somewhat similar to this but mine is a vertical scrollbar. No assets published, by the way. tailwind.config.js package.json |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The below should do it, this removes the default classes, and sets the below public function configure(): void
{
$this->setTableWrapperAttributes([
'default' => false,
'class' => 'shadow border-b border-gray-200 dark:border-gray-700 sm:rounded-lg',
]);
} Default is |
Beta Was this translation helpful? Give feedback.
-
@lrljoe It might be good to set the default to just |
Beta Was this translation helpful? Give feedback.
The below should do it, this removes the default classes, and sets the below
Default is
"shadow overflow-y-scroll border-b border-gray-200 dark:border-gray-700 sm:rounded-lg"