diff --git a/src/components/Author/AuthorCard/AuthorCard.module.scss b/src/components/Author/AuthorCard/AuthorCard.module.scss
index 14db38aa..a8e7e0e9 100644
--- a/src/components/Author/AuthorCard/AuthorCard.module.scss
+++ b/src/components/Author/AuthorCard/AuthorCard.module.scss
@@ -18,9 +18,8 @@
.authorName {
@include font-size(4rem);
-
font-weight: 700;
- margin-bottom: 0.2em;
+ margin-bottom: 1.2rem;
}
.authorAbout {
@@ -432,3 +431,16 @@
.listWrapper {
max-height: 70vh;
}
+
+.subscribersContainer {
+ display: flex;
+ flex-wrap: wrap;
+ font-size: 1.4rem;
+ gap: 1rem;
+ margin-top: 0;
+ white-space: nowrap;
+
+ @include media-breakpoint-down(md) {
+ justify-content: center;
+ }
+}
diff --git a/src/components/Author/AuthorCard/AuthorCard.tsx b/src/components/Author/AuthorCard/AuthorCard.tsx
index 6a75dab0..8ddbba52 100644
--- a/src/components/Author/AuthorCard/AuthorCard.tsx
+++ b/src/components/Author/AuthorCard/AuthorCard.tsx
@@ -127,12 +127,14 @@ export const AuthorCard = (props: Props) => {
0 || props.following?.length > 0}>
-
+
+
+
diff --git a/src/components/Topic/Full.module.scss b/src/components/Topic/Full.module.scss
index ee8ba0bd..c34ea44e 100644
--- a/src/components/Topic/Full.module.scss
+++ b/src/components/Topic/Full.module.scss
@@ -44,18 +44,22 @@
}
.topicDetails {
+ align-items: flex-start;
display: flex;
flex-wrap: wrap;
font-size: 1.4rem;
justify-content: center;
- gap: 4rem;
+ gap: 1rem;
margin-top: 1.5rem;
}
.topicDetailsItem {
+ align-items: center;
display: flex;
+ margin-right: 1rem;
+ white-space: nowrap;
}
.topicDetailsIcon {
display: block;
-}
\ No newline at end of file
+}
diff --git a/src/components/_shared/Subscribers/Subscribers.module.scss b/src/components/_shared/Subscribers/Subscribers.module.scss
index 6248311c..84494bd3 100644
--- a/src/components/_shared/Subscribers/Subscribers.module.scss
+++ b/src/components/_shared/Subscribers/Subscribers.module.scss
@@ -1,19 +1,8 @@
-.subscribersContainer {
- display: flex;
- flex-wrap: wrap;
- font-size: 1.4rem;
- margin-top: 1.5rem;
-
- @include media-breakpoint-down(md) {
- justify-content: center;
- }
-}
-
.subscribers {
align-items: center;
cursor: pointer;
display: inline-flex;
- margin: 0 2% 1rem;
+ margin: 0 1rem 0 0;
vertical-align: top;
border-bottom: unset !important;
@@ -44,7 +33,6 @@
.subscribersCounter {
font-weight: 500;
- margin-left: 1rem;
}
&:hover {
@@ -55,3 +43,8 @@
}
}
}
+
+.subscribersList {
+ display: flex;
+ margin-right: 0.6rem;
+}
diff --git a/src/components/_shared/Subscribers/Subscribers.tsx b/src/components/_shared/Subscribers/Subscribers.tsx
index 97a5afc7..fa12a935 100644
--- a/src/components/_shared/Subscribers/Subscribers.tsx
+++ b/src/components/_shared/Subscribers/Subscribers.tsx
@@ -1,9 +1,9 @@
-import { For, Show } from 'solid-js'
+import {For, Show} from 'solid-js'
-import { useLocalize } from '../../../context/localize'
+import {useLocalize} from '../../../context/localize'
-import { Author, Topic } from '../../../graphql/schema/core.gen'
-import { Userpic } from '../../Author/Userpic'
+import {Author, Topic} from '../../../graphql/schema/core.gen'
+import {Userpic} from '../../Author/Userpic'
import styles from './Subscribers.module.scss'
@@ -15,15 +15,17 @@ type Props = {
}
export const Subscribers = (props: Props) => {
- const { t } = useLocalize()
+ const {t} = useLocalize()
return (
-