mirror of
https://github.com/icereed/paperless-gpt.git
synced 2025-03-13 13:18:02 -05:00
Enhance drop shadow of cards
This commit is contained in:
parent
ddcb245925
commit
cc04527e36
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in a new issue