Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
cf207df6
Commit
cf207df6
authored
Mar 17, 2024
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: tweak link styles
parent
5dd1251d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
Link.tsx
web/src/components/MemoContent/Link.tsx
+8
-4
No files found.
web/src/components/MemoContent/Link.tsx
View file @
cf207df6
...
@@ -38,19 +38,23 @@ const Link: React.FC<Props> = ({ text, url }: Props) => {
...
@@ -38,19 +38,23 @@ const Link: React.FC<Props> = ({ text, url }: Props) => {
<
div
className=
"w-full max-w-64 sm:max-w-96 p-1 flex flex-col"
>
<
div
className=
"w-full max-w-64 sm:max-w-96 p-1 flex flex-col"
>
<
a
href=
{
url
}
target=
"_blank"
rel=
"noopener noreferrer"
className=
"group w-full flex flex-row justify-start items-center gap-1"
>
<
a
href=
{
url
}
target=
"_blank"
rel=
"noopener noreferrer"
className=
"group w-full flex flex-row justify-start items-center gap-1"
>
<
img
className=
"w-5 h-5 pointer-events-none"
src=
{
getFaviconWithGoogleS2
(
url
)
}
alt=
{
linkMetadata
?.
title
}
/>
<
img
className=
"w-5 h-5 pointer-events-none"
src=
{
getFaviconWithGoogleS2
(
url
)
}
alt=
{
linkMetadata
?.
title
}
/>
<
h3
className=
"text-base truncate dark:opacity-90 group-hover:opacity-80"
>
{
linkMetadata
?.
title
}
</
h3
>
<
h3
className=
"text-base truncate dark:opacity-90 group-hover:opacity-80
group-hover:underline
"
>
{
linkMetadata
?.
title
}
</
h3
>
</
a
>
</
a
>
{
linkMetadata
.
description
&&
(
{
linkMetadata
.
description
&&
(
<
p
className=
"mt-1 w-full text-sm leading-snug opacity-80 line-clamp-
2
"
>
{
linkMetadata
.
description
}
</
p
>
<
p
className=
"mt-1 w-full text-sm leading-snug opacity-80 line-clamp-
3
"
>
{
linkMetadata
.
description
}
</
p
>
)
}
)
}
</
div
>
</
div
>
}
}
arrow
arrow
>
>
<
MLink
href=
{
url
}
>
{
url
||
text
}
</
MLink
>
<
MLink
underline=
"always"
href=
{
url
}
>
{
url
||
text
}
</
MLink
>
</
Tooltip
>
</
Tooltip
>
)
:
(
)
:
(
<
MLink
href=
{
url
}
>
{
url
||
text
}
</
MLink
>
<
MLink
underline=
"always"
href=
{
url
}
>
{
url
||
text
}
</
MLink
>
);
);
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment