diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 21d7627c..ec796cd4 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -277,5 +277,6 @@ "user already exist": "user already exists", "view": "view", "zine": "zine", + "Unnamed draft": "Unnamed draft", "Publish Settings": "Publish Settings" } diff --git a/public/locales/ru/translation.json b/public/locales/ru/translation.json index 49180f3e..850bd9c9 100644 --- a/public/locales/ru/translation.json +++ b/public/locales/ru/translation.json @@ -298,5 +298,6 @@ "user already exist": "пользователь уже существует", "view": "просмотр", "zine": "журнал", - "Publish Settings": "Настройки публикации" + "Publish Settings": "Настройки публикации", + "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) => {