diff --git a/src/components/Explore/index.tsx b/src/components/Explore/index.tsx index c4ae82f2..dae3f51c 100644 --- a/src/components/Explore/index.tsx +++ b/src/components/Explore/index.tsx @@ -30,7 +30,7 @@ export default function Explore() { } return ( -
+
{collections.map((collection) => ( ))} @@ -41,16 +41,16 @@ export default function Explore() { function RelayCollection({ collection }: { collection: TAwesomeRelayCollection }) { const { deepBrowsing } = useDeepBrowsing() return ( -
+
{collection.name}
-
+
{collection.relays.map((url) => ( ))} @@ -72,14 +72,16 @@ function RelayItem({ url }: { url: string }) { } return ( - { - e.stopPropagation() - navigateToRelay(toRelay(relayInfo.url)) - }} - /> +
+ { + e.stopPropagation() + navigateToRelay(toRelay(relayInfo.url)) + }} + /> +
) } diff --git a/src/components/RelaySimpleInfo/index.tsx b/src/components/RelaySimpleInfo/index.tsx index 40d3dd87..8dadca30 100644 --- a/src/components/RelaySimpleInfo/index.tsx +++ b/src/components/RelaySimpleInfo/index.tsx @@ -19,8 +19,8 @@ export default function RelaySimpleInfo({ const { t } = useTranslation() return ( -
-
+
+
diff --git a/src/layouts/PrimaryPageLayout/index.tsx b/src/layouts/PrimaryPageLayout/index.tsx index 7f63dad8..55c5e9cc 100644 --- a/src/layouts/PrimaryPageLayout/index.tsx +++ b/src/layouts/PrimaryPageLayout/index.tsx @@ -72,6 +72,7 @@ const PrimaryPageLayout = forwardRef(