diff --git a/ui/component/sideNavigation/view.jsx b/ui/component/sideNavigation/view.jsx
index 8e9e5b5ab..ebe58600e 100644
--- a/ui/component/sideNavigation/view.jsx
+++ b/ui/component/sideNavigation/view.jsx
@@ -359,7 +359,7 @@ function SideNavigation(props: Props) {
))}
)}
- {!SIMPLE_SITE && sidebarOpen && isPersonalized && followedTags && followedTags.length > 0 && (
+ {sidebarOpen && isPersonalized && followedTags && followedTags.length > 0 && (
{followedTags.map(({ name }, key) => (
-
@@ -442,7 +442,7 @@ function SideNavigation(props: Props) {
))}
)}
- {!SIMPLE_SITE && sidebarOpen && isPersonalized && followedTags && followedTags.length > 0 && (
+ {sidebarOpen && isPersonalized && followedTags && followedTags.length > 0 && (
{followedTags.map(({ name }, key) => (
-
diff --git a/ui/page/discover/view.jsx b/ui/page/discover/view.jsx
index 19b144898..34d52c82d 100644
--- a/ui/page/discover/view.jsx
+++ b/ui/page/discover/view.jsx
@@ -1,6 +1,7 @@
// @flow
import { SHOW_ADS, DOMAIN, SIMPLE_SITE } from 'config';
import * as ICONS from 'constants/icons';
+import * as PAGES from 'constants/pages';
import React, { useRef } from 'react';
import Page from 'component/page';
import ClaimListDiscover from 'component/claimListDiscover';
@@ -20,8 +21,8 @@ type Props = {
followedTags: Array,
repostedUri: string,
repostedClaim: ?GenericClaim,
- doToggleTagFollowDesktop: string => void,
- doResolveUri: string => void,
+ doToggleTagFollowDesktop: (string) => void,
+ doResolveUri: (string) => void,
isAuthenticated: boolean,
dynamicRouteProps: RowDataItem,
tileLayout: boolean,
@@ -82,6 +83,13 @@ function DiscoverPage(props: Props) {
{(tag === CS.TAGS_ALL && __('All Content')) || (tag === CS.TAGS_FOLLOWED && __('Followed Tags')) || tag}
+
+
);
} else {
diff --git a/ui/scss/component/_claim-search.scss b/ui/scss/component/_claim-search.scss
index cf6b39c1c..7bc56b155 100644
--- a/ui/scss/component/_claim-search.scss
+++ b/ui/scss/component/_claim-search.scss
@@ -109,3 +109,7 @@
}
}
}
+
+.claim-search__tags-link {
+ margin-left: var(--spacing-s);
+}
diff --git a/ui/scss/component/_navigation.scss b/ui/scss/component/_navigation.scss
index c315f8f7c..8f6f19093 100644
--- a/ui/scss/component/_navigation.scss
+++ b/ui/scss/component/_navigation.scss
@@ -72,9 +72,8 @@
}
}
-.navigation__secondary--tags {
- @extend .navigation__secondary;
- margin-left: var(--spacing-l);
+.navigation__tertiary {
+ margin-top: var(--spacing-m);
}
.navigation-link {