fixed team dark mode (#2702)
This commit is contained in:
parent
9322b4ab4c
commit
6c27b04f83
1 changed files with 1 additions and 2 deletions
|
@ -86,7 +86,7 @@ function TeamPage({ team }: TeamPageProps) {
|
||||||
<div>
|
<div>
|
||||||
<Theme />
|
<Theme />
|
||||||
<HeadSeo title={teamName} description={teamName} />
|
<HeadSeo title={teamName} description={teamName} />
|
||||||
<div className="rounded-md bg-white px-4 pt-24 pb-12 dark:bg-gray-800 md:border">
|
<div className="rounded-md bg-white px-4 pt-24 pb-12 dark:bg-gray-900">
|
||||||
<div className="max-w-96 mx-auto mb-8 text-center">
|
<div className="max-w-96 mx-auto mb-8 text-center">
|
||||||
<Avatar
|
<Avatar
|
||||||
alt={teamName}
|
alt={teamName}
|
||||||
|
@ -104,7 +104,6 @@ function TeamPage({ team }: TeamPageProps) {
|
||||||
{!showMembers.isOn && team.eventTypes.length > 0 && (
|
{!showMembers.isOn && team.eventTypes.length > 0 && (
|
||||||
<div className="mx-auto max-w-3xl">
|
<div className="mx-auto max-w-3xl">
|
||||||
{eventTypes}
|
{eventTypes}
|
||||||
|
|
||||||
<div className="relative mt-12">
|
<div className="relative mt-12">
|
||||||
<div className="absolute inset-0 flex items-center" aria-hidden="true">
|
<div className="absolute inset-0 flex items-center" aria-hidden="true">
|
||||||
<div className="w-full border-t border-gray-200 dark:border-gray-700" />
|
<div className="w-full border-t border-gray-200 dark:border-gray-700" />
|
||||||
|
|
Loading…
Reference in a new issue