Skip to content

Commit

Permalink
Merge pull request #87 from shammy642/add_min_width
Browse files Browse the repository at this point in the history
add min-size to card
  • Loading branch information
JHLincoln authored Oct 23, 2024
2 parents 9a68e6f + d643e7e commit 2b5f96b
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 2b5f96b

Please sign in to comment.