lower card hight

This commit is contained in:
Djeeberjr 2021-11-15 19:20:08 +01:00
parent 49fb1d90a0
commit a913d2d5cb
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ interface Props {
const CardComp: React.FC<Props> = ({card,side,onChange,onRemove}) => {
return (
<div className="bg-gray-600 m-1 p-1 w-72 min-h-12">
<div className="bg-gray-600 m-1 p-1 w-72 min-h-card">
<span className="float-right cursor-pointer" onClick={()=>{onRemove?.()}}>X</span>
<span className="font-bold"><TextEdit
text={card.title}

View File

@ -2,6 +2,6 @@
@tailwind components;
@tailwind utilities;
.min-h-12 {
min-height: 12rem;
.min-h-card {
min-height: 10rem;
}