made assign job labels same style

This commit is contained in:
victorAnumudu
2024-03-18 13:42:58 +01:00
parent 6e9efd7f43
commit cdd998235e
6 changed files with 75 additions and 38 deletions
@@ -3,7 +3,7 @@ import React from 'react'
function Detail({label, value, bg,}) {
return (
<>
<label className='w-full md:w-1/4 text-slate-900 dark:text-white tracking-wide font-semibold'>{label}</label>
<label className='job-label w-full md:w-1/4'>{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>
</>
)