Skip to content

Commit 88f6a96

Browse files
committed
Updated about.tsx
1 parent 3abebcc commit 88f6a96

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

src/components/modal/views/about.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)