diff --git a/src/app.css b/src/app.css index b1241e2..45a0c4d 100644 --- a/src/app.css +++ b/src/app.css @@ -418,6 +418,10 @@ -webkit-line-clamp: 3; } + .decoration-none { + text-decoration: none !important; + } + /* Lists */ .ol-leather li a, .ul-leather li a { diff --git a/src/lib/components/publications/PublicationFeed.svelte b/src/lib/components/publications/PublicationFeed.svelte index 3f88bf2..2d51c95 100644 --- a/src/lib/components/publications/PublicationFeed.svelte +++ b/src/lib/components/publications/PublicationFeed.svelte @@ -680,7 +680,7 @@ > {#if loading && eventsInView.length === 0} {#each getSkeletonIds() as id} - + {/each} {:else if eventsInView.length > 0} {#each eventsInView as event} diff --git a/src/lib/components/publications/PublicationHeader.svelte b/src/lib/components/publications/PublicationHeader.svelte index 017f3a6..ba63fd1 100644 --- a/src/lib/components/publications/PublicationHeader.svelte +++ b/src/lib/components/publications/PublicationHeader.svelte @@ -49,50 +49,46 @@ {#if title != null && href != null} - - + + + {#if image} - {:else} - - + > {/if} - - - - - - {title} - - by - {#if authorPubkey != null} - {@render userBadge(authorPubkey, author, ndk)} - {:else} - {author} - {/if} - - - {#if version != "1"} - version: {version} - {/if} - + + + + + + {title} + + {#if authorPubkey != null} + by {@render userBadge(authorPubkey, author, ndk)} + {:else} + by {author} + {/if} + + + + + {#if version != '1'} + version: {version} + {/if} + + + - - - - - {/if}