Skip to content

Commit

Permalink
Patch ETHDenver Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Feb 14, 2024
1 parent 7bf9ef2 commit 03d8ac2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default async function ({
<EventHeader event={event} />
<div className="w-full flex flex-col gap-2 items-center justify-center">
<div className="flex items-center relative w-full pt-8 pb-2">
<div className="mx-auto w-40 h-40 aspect-square border bg-white rounded-full overflow-hidden z-10">
<div className="mx-auto w-40 h-40 aspect-square border bg-white rounded-full overflow-hidden">
<img
src={enstate.avatar}
alt="profile"
Expand Down
8 changes: 4 additions & 4 deletions app/styles/ethdenver24.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ html:has(.theme-ethdenver24) {
background: url('/ethdenver24/bg.svg') no-repeat center center;
}
.btn {
@apply bg-[#1D1C47] hover:brightness-110 active:brightness-125 text-white font-bold;
@apply bg-[#1D1C47] hover:bg-[#0C0B3E] active:bg-[#0C0B3E] text-white font-bold;
}
.btn.minting {
@apply !bg-[#0C0B3E] !border-[#3E3D70] !text-[#3E3D70] border;
}
.card-bg {
@apply bg-[#0C0B3E] shadow-xl shadow-[#1D1C47];
@apply bg-[#0C0B3E];
}
.card-body {
@apply text-white;
Expand All @@ -23,9 +23,9 @@ html:has(.theme-ethdenver24) {
@apply text-ens-light-blue-primary underline;
}
.card-body .btn {
@apply bg-[#3E3D70]
@apply bg-[#3E3D70] focus:bg-[#1D1C47] hover:bg-[#1D1C47] active:bg-[#1D1C47];
}
.card-body input {
@apply bg-[#3E3D70] border-transparent active:border-ens-light-blue-primary;
@apply bg-[#3E3D70] border-transparent focus:border-ens-light-blue-primary border-2 outline-ens-light-blue-primary focus:outline-ens-light-blue-primary;
}
}

0 comments on commit 03d8ac2

Please sign in to comment.