diff --git a/src/components/Article/AudioHeader/AudioHeader.module.scss b/src/components/Article/AudioHeader/AudioHeader.module.scss
index d27a7c60..b07d2c49 100644
--- a/src/components/Article/AudioHeader/AudioHeader.module.scss
+++ b/src/components/Article/AudioHeader/AudioHeader.module.scss
@@ -5,19 +5,6 @@
.albumInfo {
margin-right: 224px;
- .topic {
- .link {
- @include font-size(1.6rem);
-
- color: var(--blue-link);
- border: none;
-
- &:hover {
- text-decoration: underline;
- }
- }
- }
-
& > h1 {
margin: 16px 0 0;
}
diff --git a/src/components/Article/AudioHeader/AudioHeader.tsx b/src/components/Article/AudioHeader/AudioHeader.tsx
index 4569caf3..252ddc66 100644
--- a/src/components/Article/AudioHeader/AudioHeader.tsx
+++ b/src/components/Article/AudioHeader/AudioHeader.tsx
@@ -7,6 +7,7 @@ import { Icon } from '../../_shared/Icon'
import { Topic } from '../../../graphql/types.gen'
import { getPagePath } from '@nanostores/router'
import { router } from '../../../stores/router'
+import { CardTopic } from '../../Feed/CardTopic'
type Props = {
title: string
@@ -29,11 +30,7 @@ export const AudioHeader = (props: Props) => {
-
+
{props.title}
diff --git a/src/components/Author/AuthorCard/AuthorCard.module.scss b/src/components/Author/AuthorCard/AuthorCard.module.scss
index db7139f4..dcbcfd34 100644
--- a/src/components/Author/AuthorCard/AuthorCard.module.scss
+++ b/src/components/Author/AuthorCard/AuthorCard.module.scss
@@ -90,19 +90,22 @@
.authorName {
border: none !important;
- display: block;
font-size: 1.6rem;
font-weight: 500;
margin-bottom: 0.8rem;
- .listWrapper &:before {
- content: '';
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
- z-index: 2;
+ .listWrapper & {
+ display: block;
+
+ &:before {
+ content: '';
+ height: 100%;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ z-index: 2;
+ }
}
}
@@ -470,21 +473,6 @@
}
}
-.buttonWriteAuthorPage {
- background: #f6f6f6 !important;
- border-radius: 0.8rem;
-
- &:hover {
- background: #e9e9ee !important;
- border-color: #e9e9ee;
- }
-
- &:active {
- background: #ccc !important;
- border-color: #ccc;
- }
-}
-
.authorPage {
align-items: center;
diff --git a/src/components/Author/AuthorCard/AuthorCard.tsx b/src/components/Author/AuthorCard/AuthorCard.tsx
index d0f4989f..ece9c456 100644
--- a/src/components/Author/AuthorCard/AuthorCard.tsx
+++ b/src/components/Author/AuthorCard/AuthorCard.tsx
@@ -353,9 +353,8 @@ export const AuthorCard = (props: Props) => {