diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 5d9b89ff..fc907cea 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -272,5 +272,6 @@ "user already exist": "user already exists", "view": "view", "zine": "zine", - "Required": "Required" + "Required": "Required", + "Unnamed draft": "Unnamed draft" } diff --git a/public/locales/ru/translation.json b/public/locales/ru/translation.json index 0d00d8eb..c2d09cdf 100644 --- a/public/locales/ru/translation.json +++ b/public/locales/ru/translation.json @@ -293,5 +293,6 @@ "user already exist": "пользователь уже существует", "view": "просмотр", "zine": "журнал", - "Required": "Поле обязательно для заполнения" + "Required": "Поле обязательно для заполнения", + "Unnamed draft": "Unnamed draft" } diff --git a/src/components/Article/Article.module.scss b/src/components/Article/Article.module.scss index 46e10caa..40f186bd 100644 --- a/src/components/Article/Article.module.scss +++ b/src/components/Article/Article.module.scss @@ -368,6 +368,10 @@ img { } } +[data-float] { + max-width: 50%; +} + [data-float='left'] { float: left; } diff --git a/src/components/Article/FullArticle.tsx b/src/components/Article/FullArticle.tsx index 4ec547c9..bca37f77 100644 --- a/src/components/Article/FullArticle.tsx +++ b/src/components/Article/FullArticle.tsx @@ -124,14 +124,16 @@ export const FullArticle = (props: ArticleProps) => {