diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 345452b4..fc967d81 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -362,6 +362,7 @@ "Suggest an idea": "Suggest an idea", "Support Discours": "Support Discours", "Support the project": "Support the project", + "Support us": "Support us", "Terms of use": "Site rules", "Text checking": "Text checking", "Thank you": "Thank you", diff --git a/public/locales/ru/translation.json b/public/locales/ru/translation.json index fd2b671a..5694bc44 100644 --- a/public/locales/ru/translation.json +++ b/public/locales/ru/translation.json @@ -382,6 +382,7 @@ "Suggest an idea": "Предложить идею", "Support Discours": "Поддержите Дискурс", "Support the project": "Поддержать проект", + "Support us": "Помочь журналу", "Terms of use": "Правила сайта", "Text checking": "Проверка текста", "Thank you": "Благодарности", diff --git a/src/components/Views/Expo/Expo.module.scss b/src/components/Views/Expo/Expo.module.scss index bb32f0b4..190b4243 100644 --- a/src/components/Views/Expo/Expo.module.scss +++ b/src/components/Views/Expo/Expo.module.scss @@ -4,10 +4,6 @@ padding: 0 0 4rem; min-height: 100vh; - .navigation { - padding: 0; - } - .showMore { display: flex; width: 100%; diff --git a/src/components/Views/Feed/Feed.module.scss b/src/components/Views/Feed/Feed.module.scss index 3099733d..707b6431 100644 --- a/src/components/Views/Feed/Feed.module.scss +++ b/src/components/Views/Feed/Feed.module.scss @@ -205,6 +205,7 @@ margin-top: 0; margin-bottom: 0; min-width: 300px; + overflow: hidden; & > li { margin-bottom: 0; diff --git a/src/components/Views/Feed/Feed.tsx b/src/components/Views/Feed/Feed.tsx index 649792b6..907eab5d 100644 --- a/src/components/Views/Feed/Feed.tsx +++ b/src/components/Views/Feed/Feed.tsx @@ -203,6 +203,10 @@ export const Feed = (props: Props) => { ) const ogTitle = t('Feed') + const myPopupProps = { + horizontalAnchor: 'right', + } + return (
@@ -256,6 +260,7 @@ export const Feed = (props: Props) => {
{ /> = { class?: string - popupProps?: PopupProps + popupProps?: Partial options: TOption[] currentOption: TOption triggerCssClass?: string @@ -56,9 +56,12 @@ export const DropDown = (props: Props) onVisibilityChange={(isVisible) => setIsPopupVisible(isVisible)} {...props.popupProps} > - p.value !== props.currentOption.value)}> + {(option) => ( -