Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
added blue color for links in bio (calcom#6760)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeerRich authored and fritterhoff committed Jan 27, 2023
1 parent de6fe4d commit 4175c84
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/web/components/team/screens/Team.tsx
Expand Up @@ -32,7 +32,7 @@ const Member = ({ member, teamName }: { member: MemberType; teamName: string | n
{!isBioEmpty ? (
<>
<div
className="dark:text-darkgray-600 text-s text-gray-500"
className="dark:text-darkgray-600 text-sm text-gray-500 [&_a]:text-blue-500 [&_a]:underline [&_a]:hover:text-blue-600"
dangerouslySetInnerHTML={{ __html: md.render(member.bio || "") }}
/>
</>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/pages/[user].tsx
Expand Up @@ -146,7 +146,7 @@ export default function User(props: inferSSRProps<typeof getServerSideProps> & E
{!isBioEmpty && (
<>
<div
className="dark:text-darkgray-600 text-s text-gray-500"
className="dark:text-darkgray-600 text-sm text-gray-500 [&_a]:text-blue-500 [&_a]:underline [&_a]:hover:text-blue-600"
dangerouslySetInnerHTML={{ __html: md.render(user.bio || "") }}
/>
</>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/pages/team/[slug].tsx
Expand Up @@ -99,7 +99,7 @@ function TeamPage({ team }: TeamPageProps) {
{!isBioEmpty && (
<>
<div
className="dark:text-darkgray-600 text-s text-gray-500"
className="dark:text-darkgray-600 text-sm text-gray-500 [&_a]:text-blue-500 [&_a]:underline [&_a]:hover:text-blue-600"
dangerouslySetInnerHTML={{ __html: md.render(team.bio || "") }}
/>
</>
Expand Down
2 changes: 1 addition & 1 deletion packages/features/ee/teams/pages/team-profile-view.tsx
Expand Up @@ -256,7 +256,7 @@ const ProfileView = () => {
<>
<Label className="mt-5 text-black">{t("about")}</Label>
<div
className="dark:text-darkgray-600 text-s text-gray-500"
className="dark:text-darkgray-600 text-sm text-gray-500 [&_a]:text-blue-500 [&_a]:underline [&_a]:hover:text-blue-600"
dangerouslySetInnerHTML={{ __html: md.render(team.bio || "") }}
/>
</>
Expand Down

0 comments on commit 4175c84

Please sign in to comment.