diff --git a/src/components/Author/AuthorBadge/AuthorBadge.tsx b/src/components/Author/AuthorBadge/AuthorBadge.tsx
index bc7c3bbd..75687bfc 100644
--- a/src/components/Author/AuthorBadge/AuthorBadge.tsx
+++ b/src/components/Author/AuthorBadge/AuthorBadge.tsx
@@ -27,6 +27,7 @@ type Props = {
inviteView?: boolean
onInvite?: (id: number) => void
selected?: boolean
+ subscriptionsMode?: boolean
}
export const AuthorBadge = (props: Props) => {
const { mediaMatches } = useMediaQuery()
@@ -114,7 +115,7 @@ export const AuthorBadge = (props: Props) => {
-
+
0}>
{t('PublicationsWithCount', { count: props.author.stat?.shouts ?? 0 })}
diff --git a/src/components/Author/AuthorCard/AuthorCard.tsx b/src/components/Author/AuthorCard/AuthorCard.tsx
index aeb64cdf..1423e3f7 100644
--- a/src/components/Author/AuthorCard/AuthorCard.tsx
+++ b/src/components/Author/AuthorCard/AuthorCard.tsx
@@ -312,7 +312,7 @@ export const AuthorCard = (props: Props) => {
{(subscription) =>
isAuthor(subscription) ? (
-
+
) : (
)
diff --git a/src/components/Topic/TopicBadge/TopicBadge.module.scss b/src/components/Topic/TopicBadge/TopicBadge.module.scss
index 271d1e20..b830a7c8 100644
--- a/src/components/Topic/TopicBadge/TopicBadge.module.scss
+++ b/src/components/Topic/TopicBadge/TopicBadge.module.scss
@@ -68,7 +68,7 @@
@include font-size(1.6rem);
line-height: 1.4;
margin: 0.8rem 0;
- -webkit-line-clamp: 3;
+ -webkit-line-clamp: 2;
}
}
@@ -111,7 +111,7 @@
.description {
color: var(--black-400);
- @include font-size(1.4rem);
+ @include font-size(1.2rem);
font-weight: 500;
margin: 0;
}
diff --git a/src/components/Topic/TopicBadge/TopicBadge.tsx b/src/components/Topic/TopicBadge/TopicBadge.tsx
index ed3f4902..4eaee460 100644
--- a/src/components/Topic/TopicBadge/TopicBadge.tsx
+++ b/src/components/Topic/TopicBadge/TopicBadge.tsx
@@ -69,15 +69,16 @@ export const TopicBadge = (props: Props) => {
{title()}
-
+
+ {t('PublicationsWithCount', { count: props.topic?.stat?.shouts ?? 0 })}
+
+ }
+ >
-
-
-
- {t('PublicationsWithCount', { count: props.topic?.stat?.shouts ?? 0 })}
-
-