Skip to content

Commit

Permalink
fix: icon, no text
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Oct 31, 2024
1 parent f79b492 commit eb54e19
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions client/routes/public/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,23 @@ const PublicSecrets = () => {
))}
{secrets.length === 0 && (
<tr>
<td
colSpan={3}
className="px-6 py-8 text-center text-gray-400 italic"
>
{t('public.no_secrets')}
<td colSpan={3} className="px-6 py-8 text-center text-gray-400">
<div className="flex flex-col items-center gap-3">
<svg
className="w-8 h-8"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</div>
</td>
</tr>
)}
Expand Down

0 comments on commit eb54e19

Please sign in to comment.