Enhance drop shadow of cards

This commit is contained in:
Dominik Schröter 2024-10-07 21:38:34 +02:00
parent ddcb245925
commit cc04527e36
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ interface DocumentCardProps {
}
const DocumentCard: React.FC<DocumentCardProps> = ({ document }) => (
<div className="bg-white shadow shadow-blue-500/50 rounded-md p-4 relative group overflow-hidden">
<div className="bg-white shadow-lg shadow-blue-500/50 rounded-md p-4 relative group overflow-hidden">
<h3 className="text-lg font-semibold text-gray-800">{document.title}</h3>
<p className="text-sm text-gray-600 mt-2 truncate">
{document.content.length > 100

View file

@ -19,7 +19,7 @@ const SuggestionCard: React.FC<SuggestionCardProps> = ({
}) => {
const document = suggestion.original_document;
return (
<div className="bg-white shadow shadow-blue-500/50 rounded-md p-4 relative flex flex-col justify-between h-full">
<div className="bg-white shadow-lg shadow-blue-500/50 rounded-md p-4 relative flex flex-col justify-between h-full">
<div className="flex items-center group relative">
<div className="relative">
<h3 className="text-lg font-semibold text-gray-800">