mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
fix: fix link color when using colorized logs (#3357)
This commit is contained in:
@@ -38,7 +38,7 @@ const linkify = (text: string) =>
|
|||||||
text.replace(urlPattern, (url) => `<a href="${url}" target="_blank" rel="noopener noreferrer">${url}</a>`);
|
text.replace(urlPattern, (url) => `<a href="${url}" target="_blank" rel="noopener noreferrer">${url}</a>`);
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="postcss">
|
<style scoped lang="postcss">
|
||||||
.log-wrapper > :deep(a) {
|
.log-wrapper :deep(a) {
|
||||||
@apply text-primary underline-offset-4 hover:underline;
|
@apply text-primary underline-offset-4 hover:underline;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user