diff --git a/frontend/css/explore.less b/frontend/css/explore.less index b146148c22..33edbf0fc2 100644 --- a/frontend/css/explore.less +++ b/frontend/css/explore.less @@ -50,14 +50,16 @@ padding: 0.5em; } -.explore-card-text-name > a { +.explore-card-text-name { font-size: 18pt; font-weight: 900; font-family: Roboto, sans-serif; - &:visited, - &:hover, - &:visited:hover { - color: @blue; + a { + &:visited, + &:hover, + &:visited:hover { + color: @blue; + } } } @@ -139,11 +141,8 @@ .explore-page-divider { display: flex; align-items: baseline; - > *:first-child { - margin-right: 0.6em; - flex: 0; - } + gap: 1em; hr { - width: 100%; + flex: 1; } } diff --git a/frontend/js/src/explore/Explore.tsx b/frontend/js/src/explore/Explore.tsx index ae8ed8a070..d814df4e6a 100644 --- a/frontend/js/src/explore/Explore.tsx +++ b/frontend/js/src/explore/Explore.tsx @@ -6,6 +6,7 @@ import { useContext } from "react"; import { Link } from "react-router-dom"; import { Helmet } from "react-helmet"; import GlobalAppContext from "../utils/GlobalAppContext"; +import { COLOR_LB_ORANGE } from "../utils/constants"; type ExploreCardProps = { name: string; @@ -80,36 +81,6 @@ export default function ExplorePage() { url="/explore/music-neighborhood/" /> - {currentUser?.name && ( -