family assign task popout added

This commit was merged in pull request #223.
This commit is contained in:
victorAnumudu
2023-06-30 11:57:47 +01:00
parent c6b4fcc43d
commit 6a6900a62b
5 changed files with 200 additions and 5 deletions
@@ -3,8 +3,8 @@ import React from 'react'
function Detail({label, value, bg,}) {
return (
<>
<label className='w-full md:w-1/4 text-slate-900 tracking-wide font-semibold'>{label}</label>
<p className={`p-1 w-full md:w-3/4 text-sm text-slate-900 ${bg ? bg : null}`}>{value}</p>
<label className='w-full md:w-1/4 text-slate-900 dark:text-white tracking-wide font-semibold'>{label}</label>
<p className={`p-1 w-full md:w-3/4 text-sm text-slate-900 dark:text-white ${bg ? bg : null}`}>{value}</p>
</>
)
}