mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
Made style changes
This commit is contained in:
parent
a0f66c66d7
commit
a14a3cc29b
|
@ -99,7 +99,7 @@ const ResourceDrawer: FunctionComponent<DrawerProps> = ({ rowContent }) => {
|
|||
href={rowContent.link}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-blue-600 underline hover:text-blue-800"
|
||||
className="text-gray-500 underline hover:text-gray-700"
|
||||
>
|
||||
{rowContent.link}
|
||||
</a>
|
||||
|
|
|
@ -95,14 +95,9 @@ const ServiceDrawer: FunctionComponent<DrawerProps> = ({ rowContent }) => {
|
|||
<td className="w-32">Status</td>
|
||||
</div>
|
||||
<td className="w-3/4 hover:bg-gray-50">
|
||||
<a
|
||||
href={rowContent.status}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-blue-600 underline hover:text-blue-800"
|
||||
>
|
||||
<span className="text-gray-500">
|
||||
{rowContent.status}
|
||||
</a>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr className="w-full text-xs items-center flex flex-row justify-between">
|
||||
|
@ -130,8 +125,15 @@ const ServiceDrawer: FunctionComponent<DrawerProps> = ({ rowContent }) => {
|
|||
</td>
|
||||
<td className="w-32">Requirements</td>
|
||||
</div>
|
||||
<td className="w-3/4 p-2 pl-0">
|
||||
{rowContent.requirements}
|
||||
<td className="w-3/4 hover:bg-gray-50">
|
||||
<TagsInput
|
||||
presetValue={rowContent.requirements}
|
||||
presetOptions={[
|
||||
"mandatory",
|
||||
"optional",
|
||||
"preferred",
|
||||
]} // Example options
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr className="w-full text-xs items-center flex flex-row justify-between">
|
||||
|
|
Loading…
Reference in New Issue
Block a user