@@ -34,22 +34,36 @@ const Env = ({ tab }) => {
3434
3535 return (
3636 < div className = 'p-4' key = { tab . id } >
37- < table className = 'w-full leading-normal' >
37+ < table className = 'w-full table-fixed leading-normal' >
3838 < thead >
3939 < tr className = 'bg-ghost-50 text-ghost-600 text-left text-xs font-bold uppercase tracking-wider' >
40- < th className = 'border-ghost-200 max-w-4 border p-5' > S. No.</ th >
41- < th className = 'border-ghost-200 border p-5 ' > Key</ th >
42- < th className = 'border-ghost-200 border p-5' > Value</ th >
43- < th className = 'border-ghost-200 max-w-4 border p-5' > Action</ th >
40+ < th className = 'border-ghost-200 border p-5' style = { { width : '50px' } } >
41+ S. No.
42+ </ th >
43+ < th className = 'border-ghost-200 border p-5' style = { { width : '100px' } } >
44+ Key
45+ </ th >
46+ < th className = 'border-ghost-200 border p-5' style = { { width : '200px' } } >
47+ Value
48+ </ th >
49+ < th className = 'border-ghost-200 border p-5' style = { { width : '50px' } } >
50+ Action
51+ </ th >
4452 </ tr >
4553 </ thead >
4654 < tbody >
4755 { Object . entries ( variables ) . map ( ( [ key , value ] , index ) => (
4856 < tr key = { index } className = 'text-ghost-700 hover:bg-ghost-50 border-b border-gray-200 text-sm' >
49- < td className = 'whitespace-no-wrap max-w-4 p-5' > { index + 1 } </ td >
50- < td className = 'whitespace-no-wrap p-5' > { key } </ td >
51- < td className = 'whitespace-no-wrap p-5' > { value } </ td >
52- < td className = 'whitespace-no-wrap max-w-4 p-5' >
57+ < td className = 'whitespace-no-wrap p-5' style = { { width : '50px' } } >
58+ { index + 1 }
59+ </ td >
60+ < td className = 'whitespace-no-wrap truncate p-5' style = { { width : '100px' } } >
61+ { key }
62+ </ td >
63+ < td className = 'whitespace-no-wrap truncate p-5' style = { { width : '200px' } } >
64+ { value }
65+ </ td >
66+ < td className = 'whitespace-no-wrap p-5' style = { { width : '50px' } } >
5367 < div
5468 className = 'hover:bg-ghost-200 relative inline-block cursor-pointer rounded-md p-2 text-left transition duration-200 ease-out'
5569 onClick = { ( ) => {
0 commit comments