diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json
index 66a27c5e..44ceaa2e 100644
--- a/public/locales/en/translation.json
+++ b/public/locales/en/translation.json
@@ -103,6 +103,7 @@
"Discussion rules": "Discussion rules",
"Discussion rules in social networks": "Discussion rules",
"Discussions": "Discussions",
+ "Do you really want to reset all changes?": "Do you really want to reset all changes?",
"Dogma": "Dogma",
"Draft successfully deleted": "Draft successfully deleted",
"Drafts": "Drafts",
@@ -330,6 +331,7 @@
"Terms of use": "Site rules",
"Text checking": "Text checking",
"Thank you": "Thank you",
+ "The address is already taken": "The address is already taken",
"Theory": "Theory",
"There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?": "There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?",
"There are unsaved changes in your publishing settings. Are you sure you want to leave the page without saving?": "There are unsaved changes in your publishing settings. Are you sure you want to leave the page without saving?",
diff --git a/public/locales/ru/translation.json b/public/locales/ru/translation.json
index 726a04ff..743353f1 100644
--- a/public/locales/ru/translation.json
+++ b/public/locales/ru/translation.json
@@ -71,6 +71,7 @@
"Collections": "Коллекции",
"Come up with a subtitle for your story": "Придумайте подзаголовок вашей истории",
"Come up with a title for your story": "Придумайте заголовок вашей истории",
+ "Comment": "Комментировать",
"Comment successfully deleted": "Комментарий успешно удален",
"Comments": "Комментарии",
"Communities": "Сообщества",
@@ -106,6 +107,7 @@
"Discussion rules": "Правила дискуссий",
"Discussion rules in social networks": "Правила сообществ самиздата в соцсетях",
"Discussions": "Дискуссии",
+ "Do you really want to reset all changes?": "Вы действительно хотите сбросить все изменения?",
"Dogma": "Догма",
"Draft successfully deleted": "Черновик успешно удален",
"Drafts": "Черновики",
@@ -349,6 +351,7 @@
"Terms of use": "Правила сайта",
"Text checking": "Проверка текста",
"Thank you": "Благодарности",
+ "The address is already taken": "Адрес уже занят",
"Theory": "Теории",
"There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?": "В настройках вашего профиля есть несохраненные изменения. Уверены, что хотите покинуть страницу без сохранения?",
"There are unsaved changes in your publishing settings. Are you sure you want to leave the page without saving?": "В настройках публикации есть несохраненные изменения. Уверены, что хотите покинуть страницу без сохранения?",
diff --git a/src/components/Author/AuthorCard/AuthorCard.module.scss b/src/components/Author/AuthorCard/AuthorCard.module.scss
index eee554b7..3e13863e 100644
--- a/src/components/Author/AuthorCard/AuthorCard.module.scss
+++ b/src/components/Author/AuthorCard/AuthorCard.module.scss
@@ -43,8 +43,23 @@
}
}
+ .authorActionsLabel {
+ @include media-breakpoint-down(sm) {
+ display: none;
+ }
+ }
+
+ .authorActionsLabelMobile {
+ display: none;
+
+ @include media-breakpoint-down(sm) {
+ display: block;
+ }
+ }
+
.authorDetails {
display: block;
+ margin-bottom: 0;
@include media-breakpoint-down(md) {
flex: 1 100%;
@@ -147,7 +162,7 @@
.authorSubscribeSocial {
align-items: center;
display: flex;
- margin: 2rem 0;
+ margin: 0.5rem 0 2rem -0.4rem;
.socialLink {
border: none;
@@ -403,7 +418,6 @@
@include media-breakpoint-down(sm) {
flex: 1 100%;
justify-content: center;
- margin-top: 1em;
}
@include media-breakpoint-down(md) {
@@ -420,7 +434,6 @@
flex-wrap: wrap;
font-size: 1.4rem;
margin-top: 1.5rem;
- gap: 1rem;
@include media-breakpoint-down(md) {
justify-content: center;
@@ -431,10 +444,18 @@
align-items: center;
cursor: pointer;
display: inline-flex;
- margin-right: 3rem;
+ margin: 0 2% 1rem;
vertical-align: top;
border-bottom: unset !important;
+ &:first-child {
+ margin-left: 0;
+ }
+
+ &:last-child {
+ margin-right: 0;
+ }
+
.subscribersItem {
position: relative;
diff --git a/src/components/Author/AuthorCard/AuthorCard.tsx b/src/components/Author/AuthorCard/AuthorCard.tsx
index 3f8cd232..100b8c66 100644
--- a/src/components/Author/AuthorCard/AuthorCard.tsx
+++ b/src/components/Author/AuthorCard/AuthorCard.tsx
@@ -132,7 +132,9 @@ export const AuthorCard = (props: Props) => {
{name()}
-
+
+
+
0) ||
@@ -233,7 +235,12 @@ export const AuthorCard = (props: Props) => {