@@ -200,7 +200,7 @@ export default function OracleInteractionPage() {
200200 </ Link >
201201
202202 < div className = "flex items-center gap-4" >
203- < h1 className = "text-4xl sm:text-5xl font-bold tracking-wide bg-gradient-to-r from-foreground to-primary bg-clip-text text-transparent" style = { { fontStyle : 'oblique 15deg' } } >
203+ < h1 className = "text-4xl sm:text-5xl font-medium tracking-wide bg-gradient-to-r from-foreground to-primary bg-clip-text text-transparent" style = { { fontStyle : 'oblique 15deg' } } >
204204 { oracle . name ?? "Oracle Dashboard" }
205205 </ h1 >
206206 { oracle . status === "active" && (
@@ -234,7 +234,7 @@ export default function OracleInteractionPage() {
234234 < div className = "max-w-7xl mx-auto space-y-12" >
235235
236236 { /* Price Chart Section */ }
237- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
237+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
238238 < CardHeader className = "border-b border-border/30" >
239239 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
240240 < TrendingUp className = "h-5 w-5 text-primary" />
@@ -248,7 +248,7 @@ export default function OracleInteractionPage() {
248248
249249 { /* Submit Value Section */ }
250250 < div className = "grid md:grid-cols-2 gap-6" >
251- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
251+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
252252 < CardHeader className = "border-b border-border/30" >
253253 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
254254 < Send className = "h-5 w-5 text-primary" />
@@ -258,9 +258,9 @@ export default function OracleInteractionPage() {
258258 Submit a new price value to the oracle. You must have deposited tokens to participate.
259259 </ CardDescription >
260260 </ CardHeader >
261- < CardContent className = "p-6 space-y-4" >
262- < div className = "space-y-2 " >
263- < Label htmlFor = "submitValue" className = "text-foreground font-medium" > Price Value</ Label >
261+ < CardContent >
262+ < div className = "mb-4 " >
263+ < Label htmlFor = "submitValue" className = "text-foreground font-medium mb-2 " > Price Value</ Label >
264264 < Input
265265 id = "submitValue"
266266 type = "number"
@@ -281,7 +281,7 @@ export default function OracleInteractionPage() {
281281 </ CardContent >
282282 </ Card >
283283
284- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
284+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
285285 < CardHeader className = "border-b border-border/30" >
286286 < div className = "flex items-center justify-between" >
287287 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
@@ -297,9 +297,9 @@ export default function OracleInteractionPage() {
297297 Latest submitted and aggregated oracle values.
298298 </ CardDescription >
299299 </ CardHeader >
300- < CardContent className = "p-6 space-y-4" >
301- < div className = "space-y-3" >
302- < div className = "flex items-center justify-between p-3 bg-card/50 border border-primary/30 rounded-xl transition-all duration-300" >
300+ < CardContent >
301+ < div >
302+ < div className = "flex items-center mb-4 justify-between p-3 bg-card/50 border border-primary/30 rounded-xl transition-all duration-300" >
303303 < div className = "flex items-center gap-3" >
304304 < div className = "w-2 h-2 bg-primary rounded-full animate-pulse" > </ div >
305305 < span className = "text-muted-foreground font-medium text-sm" > Latest Value</ span >
@@ -335,7 +335,7 @@ export default function OracleInteractionPage() {
335335
336336 { /* Token Management Section */ }
337337 < div className = "grid md:grid-cols-2 gap-6" >
338- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
338+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
339339 < CardHeader className = "border-b border-border/30" >
340340 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
341341 < Wallet className = "h-5 w-5 text-primary" />
@@ -345,7 +345,7 @@ export default function OracleInteractionPage() {
345345 Deposit weight tokens to participate in oracle governance and earn rewards.
346346 </ CardDescription >
347347 </ CardHeader >
348- < CardContent className = "p-6 space-y-4" >
348+ < CardContent >
349349 < div className = "space-y-2" >
350350 < Label htmlFor = "depositAmount" className = "text-foreground font-medium" > Amount</ Label >
351351 < Input
@@ -354,7 +354,7 @@ export default function OracleInteractionPage() {
354354 placeholder = "Enter amount to deposit"
355355 value = { depositAmount }
356356 onChange = { ( e ) => setDepositAmount ( e . target . value ) }
357- className = "h-12 bg-card/50 border border-primary/30 rounded-xl font-light transition-all duration-300 focus:border-primary/50 focus:ring-2 focus:ring-primary/20 focus:bg-card/70"
357+ className = "h-12 mb-4 bg-card/50 border border-primary/30 rounded-xl font-light transition-all duration-300 focus:border-primary/50 focus:ring-2 focus:ring-primary/20 focus:bg-card/70"
358358 />
359359 </ div >
360360 < Button
@@ -368,7 +368,7 @@ export default function OracleInteractionPage() {
368368 </ CardContent >
369369 </ Card >
370370
371- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
371+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
372372 < CardHeader className = "border-b border-border/30" >
373373 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
374374 < Wallet className = "h-5 w-5 text-destructive" />
@@ -378,7 +378,7 @@ export default function OracleInteractionPage() {
378378 Withdraw your deposited tokens. Note the withdrawal locking period.
379379 </ CardDescription >
380380 </ CardHeader >
381- < CardContent className = "p-6 space-y-4" >
381+ < CardContent >
382382 < div className = "space-y-2" >
383383 < Label htmlFor = "withdrawAmount" className = "text-foreground font-medium" > Amount</ Label >
384384 < Input
@@ -387,7 +387,7 @@ export default function OracleInteractionPage() {
387387 placeholder = "Enter amount to withdraw"
388388 value = { withdrawAmount }
389389 onChange = { ( e ) => setWithdrawAmount ( e . target . value ) }
390- className = "h-12 bg-card/50 border border-primary/30 rounded-xl font-light transition-all duration-300 focus:border-primary/50 focus:ring-2 focus:ring-primary/20 focus:bg-card/70"
390+ className = "h-12 mb-4 bg-card/50 border border-primary/30 rounded-xl font-light transition-all duration-300 focus:border-primary/50 focus:ring-2 focus:ring-primary/20 focus:bg-card/70"
391391 />
392392 </ div >
393393 < Button
@@ -403,7 +403,7 @@ export default function OracleInteractionPage() {
403403 </ div >
404404
405405 { /* Governance Section */ }
406- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
406+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
407407 < CardHeader className = "border-b border-border/30" >
408408 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
409409 < Vote className = "h-5 w-5 text-primary" />
@@ -413,15 +413,15 @@ export default function OracleInteractionPage() {
413413 Vote to blacklist or whitelist addresses. Your voting power is based on your deposited tokens.
414414 </ CardDescription >
415415 </ CardHeader >
416- < CardContent className = "p-6 space-y-4" >
416+ < CardContent >
417417 < div className = "space-y-2" >
418418 < Label htmlFor = "voteTarget" className = "text-foreground font-medium" > Target Address</ Label >
419419 < Input
420420 id = "voteTarget"
421421 placeholder = "0x..."
422422 value = { voteTarget }
423423 onChange = { ( e ) => setVoteTarget ( e . target . value ) }
424- className = "h-12 bg-card/50 border border-primary/30 rounded-xl font-light transition-all duration-300 focus:border-primary/50 focus:ring-2 focus:ring-primary/20 focus:bg-card/70"
424+ className = "h-12 mb-4 bg-card/50 border border-primary/30 rounded-xl font-light transition-all duration-300 focus:border-primary/50 focus:ring-2 focus:ring-primary/20 focus:bg-card/70"
425425 />
426426 </ div >
427427 < div className = "grid grid-cols-2 gap-4" >
@@ -446,7 +446,7 @@ export default function OracleInteractionPage() {
446446 </ Card >
447447
448448 { /* Oracle Configuration */ }
449- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
449+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
450450 < CardHeader className = "border-b border-border/30" >
451451 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
452452 < Settings className = "h-5 w-5 text-primary" />
@@ -491,7 +491,7 @@ export default function OracleInteractionPage() {
491491 </ Card >
492492
493493 { /* Price History */ }
494- < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 hover: border-primary/20 transition-all duration-300 rounded-2xl" >
494+ < Card className = "border-border/50 bg-card/30 backdrop-blur-sm hover:bg-card/60 border-primary/20 hover:border-white transition-all duration-300 rounded-2xl" >
495495 < CardHeader className = "border-b border-border/30" >
496496 < CardTitle className = "text-foreground flex items-center gap-2 font-medium" >
497497 < History className = "h-5 w-5 text-primary" />
0 commit comments