File tree 2 files changed +7
-3
lines changed 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 24
24
rgb (var (--background-end-rgb ))
25
25
)
26
26
rgb (var (--background-start-rgb ));
27
- background-attachment : fixed;
28
- height : 200vh ;
29
27
}
30
28
31
29
@layer utilities {
@@ -79,6 +77,12 @@ input[type=button]{
79
77
height : 100% ;
80
78
}
81
79
80
+ .session-background {
81
+ background : radial-gradient (# 315b25, # 0a2602, # 000000 );
82
+ background-attachment : fixed;
83
+ height : 200vh ;
84
+ }
85
+
82
86
83
87
.heading {
84
88
line-height : 200px ;
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ export default function SessionPage({ params } : { params: { id: string} }) {
99
99
} , [ isHostNameSet ] ) ; //if it mounts on start, this useEffect runs before the username + hostID is set in the database
100
100
101
101
return (
102
- < main id = "session-main" className = "background flex min-h-screen flex-col items-center justify-between p-24" >
102
+ < main id = "session-main" className = "session- background flex min-h-screen flex-col items-center justify-between p-24" >
103
103
< Session
104
104
isHost = { ( sessionStorage . getItem ( 'isHost' ) === "true" ) ? true : false }
105
105
sid = { sid }
You can’t perform that action at this time.
0 commit comments