1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

fix: fix link color when using colorized logs (#3357)

This commit is contained in:
Jérémy Touati
2024-10-28 20:36:45 +01:00
committed by GitHub
parent 0ef6252158
commit 4093512497

View File

@@ -38,7 +38,7 @@ const linkify = (text: string) =>
text.replace(urlPattern, (url) => `<a href="${url}" target="_blank" rel="noopener noreferrer">${url}</a>`);
</script>
<style scoped lang="postcss">
.log-wrapper > :deep(a) {
.log-wrapper :deep(a) {
@apply text-primary underline-offset-4 hover:underline;
}
</style>