File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const keywords = [
10
10
11
11
export function MarqueeUnderHero ( ) {
12
12
return (
13
- < section className = "py -6 font-mono text-xl/none text-pri-base md:pt-12 md:text-[56px]/none lg:pt-16 xl:pt-24" >
13
+ < section className = "space-y-2 pt -6 font-mono text-xl/none text-pri-base md:pt-12 md:text-[56px]/none lg:pt-16 xl:pt-24" >
14
14
{ keywords . map ( ( row , i ) => (
15
15
< Marquee
16
16
key = { i }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default function Page() {
22
22
< Hero />
23
23
< div className = "gql-conf-container gql-conf-navbar-strip text-neu-900 before:bg-white/40 before:dark:bg-blk/30" >
24
24
< MarqueeUnderHero />
25
- < RegisterToday className = "md:mb-8 md:mt-24 " />
25
+ < RegisterToday className = "md:mb-8 md:mt-16 " />
26
26
< WhatToExpectSection className = "md:mb-8 md:mt-24" />
27
27
< TopMindsSection className = "md:mb-8 md:mt-24" hasSpeakersPage = { false } />
28
28
</ div >
Original file line number Diff line number Diff line change @@ -97,11 +97,11 @@ export function Marquee({
97
97
< motion . div
98
98
className = "flex w-max"
99
99
drag = "x"
100
- onDragStart = { event => {
101
- ; ( event . target as HTMLElement ) . style . cursor = "grabbing"
100
+ onDragStart = { ( ) => {
101
+ document . documentElement . style . cursor = "grabbing"
102
102
} }
103
- onDragEnd = { event => {
104
- ; ( event . target as HTMLElement ) . style . cursor = "initial"
103
+ onDragEnd = { ( ) => {
104
+ document . documentElement . style . cursor = "initial"
105
105
} }
106
106
style = { {
107
107
...( direction === "horizontal"
@@ -116,6 +116,16 @@ export function Marquee({
116
116
>
117
117
{ children }
118
118
{ children }
119
+ { children }
120
+ { children }
121
+ { children }
122
+ { children }
123
+ { children }
124
+ { children }
125
+ { children }
126
+ { children }
127
+ { children }
128
+ { children }
119
129
</ motion . div >
120
130
</ div >
121
131
)
You can’t perform that action at this time.
0 commit comments