popout style fixed

This commit was merged in pull request #50.
This commit is contained in:
victorAnumudu
2023-05-09 23:00:45 +01:00
parent 3a3827e9aa
commit c043eeebbe
4 changed files with 131 additions and 103 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-600'>{label}</label>
<p className={`p-1 w-full md:w-3/4 text-sm ${bg ? bg : null}`}>{value}</p>
<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>
</>
)
}