Skip to content

Commit 1619cdb

Browse files
committed
Add WebkitMaskImage and redundant remove console.log
1 parent cbb9544 commit 1619cdb

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/app/conf/2025/components/venue/index.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,20 @@ export function Venue(props: VenueProps) {
1515
...({ "--photo": `url(${locationPhoto.src})` } as {}),
1616
...props.style,
1717
backgroundBlendMode: "overlay, normal",
18-
backgroundSize: "cover",
1918
}}
2019
className={clsx(
21-
"gql-conf-section relative bg-[linear-gradient(0deg,hsl(var(--color-sec-light))_0%,hsl(var(--color-sec-light))_100%),var(--photo)] dark:bg-[linear-gradient(0deg,#181f01_0%,#283502_100%),var(--photo)]",
20+
"gql-conf-section relative bg-[linear-gradient(0deg,hsl(var(--color-sec-light))_0%,hsl(var(--color-sec-light))_100%),var(--photo)] dark:bg-[linear-gradient(180deg,#344303_0%,#344303_120%),var(--photo)] md:bg-cover",
2221
props.className,
2322
)}
2423
>
25-
<div className="relative flex gap-x-12 gap-y-10 bg-white/10 p-4 dark:border-sec-darker max-lg:flex-col lg:p-16 xl:*:flex-1">
24+
<div className="relative flex gap-x-12 gap-y-10 bg-white/10 p-4 dark:bg-blk/10 max-lg:flex-col lg:p-16 xl:*:flex-1">
2625
<div
2726
className="absolute inset-0 backdrop-blur-3xl"
2827
style={{
2928
maskImage:
3029
"radial-gradient(circle at center, #fff 65%, rgb(255 0 0/.8) 99%)",
30+
WebkitMaskImage:
31+
"radial-gradient(circle at center, #fff 65%, rgb(255 0 0/.8) 99%)",
3132
}}
3233
/>
3334
<article className="relative flex shrink-0 flex-col gap-6 max-xl:max-w-[476px]">

src/app/conf/_design-system/accordion.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ export function Accordion({
3737
event.currentTarget.parentElement?.querySelectorAll("details")
3838
if (allDetails) {
3939
allDetails.forEach(details => {
40-
console.log(
41-
details,
42-
event.currentTarget,
43-
event.currentTarget === details,
44-
)
4540
if (details !== event.currentTarget) {
4641
details.open = false
4742
}

0 commit comments

Comments
 (0)