Made style changes

This commit is contained in:
Sushant Marella 2024-11-05 18:48:52 -05:00
parent a0f66c66d7
commit a14a3cc29b
2 changed files with 12 additions and 10 deletions

View File

@ -99,7 +99,7 @@ const ResourceDrawer: FunctionComponent<DrawerProps> = ({ rowContent }) => {
href={rowContent.link} href={rowContent.link}
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="text-blue-600 underline hover:text-blue-800" className="text-gray-500 underline hover:text-gray-700"
> >
{rowContent.link} {rowContent.link}
</a> </a>

View File

@ -95,14 +95,9 @@ const ServiceDrawer: FunctionComponent<DrawerProps> = ({ rowContent }) => {
<td className="w-32">Status</td> <td className="w-32">Status</td>
</div> </div>
<td className="w-3/4 hover:bg-gray-50"> <td className="w-3/4 hover:bg-gray-50">
<a <span className="text-gray-500">
href={rowContent.status}
target="_blank"
rel="noopener noreferrer"
className="text-blue-600 underline hover:text-blue-800"
>
{rowContent.status} {rowContent.status}
</a> </span>
</td> </td>
</tr> </tr>
<tr className="w-full text-xs items-center flex flex-row justify-between"> <tr className="w-full text-xs items-center flex flex-row justify-between">
@ -130,8 +125,15 @@ const ServiceDrawer: FunctionComponent<DrawerProps> = ({ rowContent }) => {
</td> </td>
<td className="w-32">Requirements</td> <td className="w-32">Requirements</td>
</div> </div>
<td className="w-3/4 p-2 pl-0"> <td className="w-3/4 hover:bg-gray-50">
{rowContent.requirements} <TagsInput
presetValue={rowContent.requirements}
presetOptions={[
"mandatory",
"optional",
"preferred",
]} // Example options
/>
</td> </td>
</tr> </tr>
<tr className="w-full text-xs items-center flex flex-row justify-between"> <tr className="w-full text-xs items-center flex flex-row justify-between">