Reinstate Manifold Markets logo
This commit is contained in:
parent
3760cd576b
commit
076f2979b4
|
@ -30,7 +30,7 @@ export function ManifoldLogo(props: {
|
||||||
<>
|
<>
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'font-major-mono mt-1 text-lg lowercase sm:hidden',
|
'font-major-mono mt-1 text-lg lowercase text-gray-900',
|
||||||
darkBackground && 'text-white'
|
darkBackground && 'text-white'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
@ -38,14 +38,6 @@ export function ManifoldLogo(props: {
|
||||||
<br />
|
<br />
|
||||||
Markets
|
Markets
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
className={clsx(
|
|
||||||
'font-major-mono mt-1 hidden lowercase sm:flex sm:text-2xl md:whitespace-nowrap',
|
|
||||||
darkBackground && 'text-white'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
Manifold Markets
|
|
||||||
</div>
|
|
||||||
</>
|
</>
|
||||||
))}
|
))}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -30,7 +30,7 @@ export function getNavigationOptions(user?: User | null) {
|
||||||
export function ProfileSummary(props: { user: User | undefined }) {
|
export function ProfileSummary(props: { user: User | undefined }) {
|
||||||
const { user } = props
|
const { user } = props
|
||||||
return (
|
return (
|
||||||
<Row className="group avatar items-center gap-4 rounded-md py-3 text-gray-600 group-hover:bg-gray-100 group-hover:text-gray-900">
|
<Row className="group avatar items-center gap-4 rounded-md py-3 text-gray-500 group-hover:bg-gray-100 group-hover:text-gray-700">
|
||||||
<Avatar avatarUrl={user?.avatarUrl} username={user?.username} noLink />
|
<Avatar avatarUrl={user?.avatarUrl} username={user?.username} noLink />
|
||||||
|
|
||||||
<div className="truncate text-left">
|
<div className="truncate text-left">
|
||||||
|
|
|
@ -105,7 +105,7 @@ export default function Sidebar() {
|
||||||
return (
|
return (
|
||||||
<nav aria-label="Sidebar" className="sticky top-4 divide-gray-300 pl-2">
|
<nav aria-label="Sidebar" className="sticky top-4 divide-gray-300 pl-2">
|
||||||
<div className="space-y-1 pb-6">
|
<div className="space-y-1 pb-6">
|
||||||
<ManifoldLogo hideText />
|
<ManifoldLogo />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mb-2" style={{ minHeight: 80 }}>
|
<div className="mb-2" style={{ minHeight: 80 }}>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user