Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/quick-bugs-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@evidence-dev/core-components': patch
---

Fix datatable column header tooltips in fullscreen mode
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@

<dialog
use:popup={open}
data-portal
class="w-[90vw] rounded-lg fixed border border-base-300 text-base-content shadow-lg bg-base-100 {open
? 'slideIn'
: 'slideOut'}"
Expand Down
5 changes: 4 additions & 1 deletion packages/ui/core-components/src/lib/unsorted/ui/Info.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@
</slot>
</span>

<div slot="content" class="bg-base-100 p-2 rounded-md text-base-content text-xs max-w-52">
<div
slot="content"
class="bg-base-100 p-2 rounded-md text-base-content text-xs max-w-52 text-left font-normal"
>
<p class="leading-relaxed text-pretty">
{description}
</p>
Expand Down
Loading