Skip to content

Commit

Permalink
add min-size to card
Browse files Browse the repository at this point in the history
  • Loading branch information
shammy642 committed Oct 23, 2024
1 parent bc55745 commit d643e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Card.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function Card({ children }) {
return (
<div className="block max-w-sm p-6 bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700">
<div className="min-w-96 block max-w-sm p-6 bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700">
{ children }
</div>
)
Expand Down

0 comments on commit d643e7e

Please sign in to comment.