From e302ad0468fb61af626f1b3b310eb4c30240aa0b Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Thu, 21 Mar 2024 10:28:42 +0800 Subject: [PATCH 1/2] Make h3 a bit smaller in the reader --- packages/web/styles/articleInnerStyling.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/styles/articleInnerStyling.css b/packages/web/styles/articleInnerStyling.css index 251da4bb7..3550d0e82 100644 --- a/packages/web/styles/articleInnerStyling.css +++ b/packages/web/styles/articleInnerStyling.css @@ -86,7 +86,7 @@ font-size: 1.43em !important; } .article-inner-css h3 { - font-size: 1.25em !important; + font-size: 1.0em !important; } .article-inner-css h4, .article-inner-css h5, From cadfac5892f76e25d1626decf0598bf862ec6522 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Thu, 21 Mar 2024 10:30:39 +0800 Subject: [PATCH 2/2] Fix docs on feed refresh rate --- .../web/pages/settings/discover-feeds/index.tsx | 13 +++++++++---- packages/web/pages/settings/feeds/index.tsx | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/packages/web/pages/settings/discover-feeds/index.tsx b/packages/web/pages/settings/discover-feeds/index.tsx index 961d3133b..e75bd76ac 100644 --- a/packages/web/pages/settings/discover-feeds/index.tsx +++ b/packages/web/pages/settings/discover-feeds/index.tsx @@ -14,8 +14,11 @@ import { unsubscribeDiscoverFeedMutation } from '../../../lib/networking/mutatio import { applyStoredTheme } from '../../../lib/themeUpdater' import { showErrorToast, showSuccessToast } from '../../../lib/toastHelpers' import { formatMessage } from '../../../locales/en/messages' -import { useGetDiscoverFeeds } from "../../../lib/networking/queries/useGetDiscoverFeeds" -import { UpdateDiscoverFeedInput, updateDiscoverFeedMutation } from "../../../lib/networking/mutations/updateDiscoverFeedMutation" +import { useGetDiscoverFeeds } from '../../../lib/networking/queries/useGetDiscoverFeeds' +import { + UpdateDiscoverFeedInput, + updateDiscoverFeedMutation, +} from '../../../lib/networking/mutations/updateDiscoverFeedMutation' export default function DiscoverFeedsSettings(): JSX.Element { const router = useRouter() @@ -53,7 +56,9 @@ export default function DiscoverFeedsSettings(): JSX.Element { async function onDelete(id: string): Promise { const result = await unsubscribeDiscoverFeedMutation(id) if (result) { - showSuccessToast('Discover Feed unsubscribed', { position: 'bottom-right' }) + showSuccessToast('Discover Feed unsubscribed', { + position: 'bottom-right', + }) } else { showErrorToast('Failed to unsubscribe', { position: 'bottom-right' }) } @@ -74,7 +79,7 @@ export default function DiscoverFeedsSettings(): JSX.Element { suggestionInfo={{ title: 'Add RSS and Atom feeds to your Omnivore account', message: - 'When you add a new feed the last 24hrs of items, or at least one item will be added to your account. Feeds will be checked for updates every hour, and new items will be added to your Following. You can also add feeds to your Library by checking the box below.', + 'When you add a new feed the last 24hrs of items, or at least one item will be added to your account. Feeds will be checked for updates every four hours, and new items will be added to your Following. You can also add feeds to your Library by checking the box below.', docs: 'https://docs.omnivore.app/using/feeds.html', key: '--settings-feeds-show-help', CTAText: 'Add a feed', diff --git a/packages/web/pages/settings/feeds/index.tsx b/packages/web/pages/settings/feeds/index.tsx index 2588f096c..37bc5dae1 100644 --- a/packages/web/pages/settings/feeds/index.tsx +++ b/packages/web/pages/settings/feeds/index.tsx @@ -131,7 +131,7 @@ export default function Rss(): JSX.Element { suggestionInfo={{ title: 'Add RSS and Atom feeds to your Omnivore account', message: - 'When you add a new feed the last 24hrs of items, or at least one item will be added to your account. Feeds will be checked for updates every hour, and new items will be added to your Following. You can also add feeds to your Library by checking the box below.', + 'When you add a new feed the last 24hrs of items, or at least one item will be added to your account. Feeds will be checked for updates every four hours, and new items will be added to your Following. You can also add feeds to your Library by checking the box below.', docs: 'https://docs.omnivore.app/using/feeds.html', key: '--settings-feeds-show-help', CTAText: 'Add a feed',