🐞 fix: Fix card overflow

This commit is contained in:
Keith Solomon
2025-05-27 21:58:54 -05:00
parent 9659d93556
commit 3bbdf90ccf
2 changed files with 19 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ data.forEach(item => {
.sort((a, b) => new Date(b.created_at) - new Date(a.created_at))
.slice(0, 5);
%>
<div class="card w-full bg-base-100 card-lg shadow-sm">
<div class="card w-full bg-base-100 card-lg shadow-sm wrap-anywhere">
<div class="card-body">
<h2 class="card-title"><%= domain %></h2>
<% sortedEntries.forEach(entry => { %>