diff --git a/src/index.css b/src/index.css index b3afa0f..1b7d691 100644 --- a/src/index.css +++ b/src/index.css @@ -8,9 +8,9 @@ body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", - "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", - sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", + "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } diff --git a/src/routes/Home.tsx b/src/routes/Home.tsx index 6914698..68841a9 100644 --- a/src/routes/Home.tsx +++ b/src/routes/Home.tsx @@ -73,27 +73,23 @@ function HomeBookmarks() { const stopBookmarks = stopBookmarksSelectors.selectAll( store.getState().stopBookmarks ); - return ( - <> - {stopBookmarks.length === 0 ? ( - - {t("home.headline")} - {t("home.bookmarkReminder")} - - {t("home.orSee")} - - {t("home.allRoutes")} - - - - ) : ( - - )} - > - ); + if (stopBookmarks.length === 0) { + return ( + + {t("home.headline")} + {t("home.bookmarkReminder")} + + {t("home.orSee")} + + {t("home.allRoutes")} + + + + ); + } else return ; }
{t("home.headline")}
{t("home.bookmarkReminder")}
- {t("home.orSee")} - - {t("home.allRoutes")} - -
+ {t("home.orSee")} + + {t("home.allRoutes")} + +