File tree Expand file tree Collapse file tree
src/components/modal/views Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,19 +48,21 @@ export const AboutView = () => {
4848 {
4949 Object . entries ( displayItems ) . map ( ( [ key , value ] ) => (
5050 < tr className = "" key = { key } >
51- < th scope = "row" className = "px-3 py-2.5 align- text-top text- sm md:text-base text-gray-500 whitespace-nowrap dark:text-gray-400 text-right" >
52- { key }
51+ < th scope = "row" className = "px-3 py-2.5 text-sm md:text-base text-gray-300 whitespace-nowrap dark:text-gray-300 text-right" >
52+ < span className = "inline-block align-baseline" > { key } </ span >
5353 </ th >
54- < td className = "px-3 py-2.5 text-wrap whitespace-normal text-left text-sm -indent-4 md:indent-0" >
55- < div >
54+ < td className = "px-3 py-2.5 text-wrap whitespace-normal text-left text-sm md:text-base -indent-4 md:indent-0" >
55+ < div className = "grid grid-cols-1" >
5656 {
5757 value !== null && isMultiLine ( value ) && getLines ( value ) . map ( ( line , index ) => (
58- < p key = { index } > { line } </ p >
58+ < span key = { index } className = "inline-block align-baseline text-gray-400 dark:text-gray-400" >
59+ { line }
60+ </ span >
5961 ) )
6062 }
6163 {
6264 ! isMultiLine ( value ) && (
63- < p > { value } </ p >
65+ < span className = "inline-block align-baseline" > { value } </ span >
6466 )
6567 }
6668 </ div >
You can’t perform that action at this time.
0 commit comments