parent
84ddf04a33
commit
cdd29f05fe
2 changed files with 22 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||||||
|
import React from "react"; |
||||||
|
|
||||||
|
const CardTrelloDesign = () => { |
||||||
|
return ( |
||||||
|
<div className="w-96 mx-auto bg-white mt-10 rounded shadow"> |
||||||
|
{/* top */} |
||||||
|
<div className="flex flex-row"> |
||||||
|
{/* right */} |
||||||
|
<div className="bg-[#FF000044] w-7 h-7 rounded-full relative"> |
||||||
|
<div className="bg-[#FF0000] w-3 h-3 rounded-full absolute left-1/2 bottom-1/2 transform -translate-x-1/2 translate-y-1/2"></div> |
||||||
|
</div> |
||||||
|
{/* left */} |
||||||
|
<div></div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default CardTrelloDesign; |
Loading…
Reference in new issue