change(ui) - ob - link and text size

This commit is contained in:
Shekar Siri 2023-04-06 18:45:49 +02:00
parent 704abbb47a
commit 8d85942f33
2 changed files with 6 additions and 2 deletions

View file

@ -67,7 +67,11 @@ const TrackingCodeModal = (props: Props) => {
</div>
<div className="col-span-2">
<DocCard title="Need help from team member?">Invite and Collaborate</DocCard>
<DocCard title="Need help from team member?">
<a className="link" onClick={showUserModal}>
Invite and Collaborate
</a>
</DocCard>
</div>
</div>
);

View file

@ -29,7 +29,7 @@ function DocCard(props: Props) {
)}
<span>{props.title}</span>
</div>
<div className="text-sm">{props.children}</div>
<div>{props.children}</div>
</div>
);
}