@@ -36,7 +36,7 @@ function Sidebar ({ sidebar = <div></div> }: SidebarComponentProps): JSX.Element
36
36
router . push ( `/space/${ s . did ( ) } ` )
37
37
}
38
38
return (
39
- < nav className = 'flex-none w-64 bg-hot-yellow text-hot-red px-5 pb-5 border-r border-hot-red h-screen' >
39
+ < nav className = 'flex-none w-64 bg-hot-yellow text-hot-red px-5 pb-5 border-r border-hot-red min- h-screen' >
40
40
< div className = 'flex flex-col justify-between h-full' >
41
41
< div >
42
42
< header className = 'opacity-0 lg:opacity-100 my-8' >
@@ -77,7 +77,7 @@ export default function SidebarLayout ({ children }: LayoutComponentProps): JSX.
77
77
< AuthenticationEnsurer >
78
78
< MaybePlanGate >
79
79
< SpaceEnsurer >
80
- < div className = 'flex min-h-full w-full text-white' >
80
+ < div className = 'flex min-h-screen w-full text-white' >
81
81
{ /* dialog sidebar for narrow browsers */ }
82
82
< Transition . Root show = { sidebarOpen } >
83
83
< Dialog onClose = { ( ) => setSidebarOpen ( false ) } as = 'div' className = 'relative z-50' >
@@ -112,10 +112,10 @@ export default function SidebarLayout ({ children }: LayoutComponentProps): JSX.
112
112
< div className = 'hidden lg:block' >
113
113
< Sidebar />
114
114
</ div >
115
- < div className = 'bg-racha-fire/50 w-full h-screen overflow-scroll text-white ' >
115
+ < div className = 'bg-racha-fire/50 w-full' >
116
116
{ /* top nav bar for narrow browsers, mainly to have a place to put the hamburger */ }
117
117
< div className = 'lg:hidden flex justify-between pt-4 px-4' >
118
- < Bars3Icon className = 'w-6 h-6' onClick = { ( ) => setSidebarOpen ( true ) } />
118
+ < Bars3Icon className = 'text-hot-red w-6 h-6' onClick = { ( ) => setSidebarOpen ( true ) } />
119
119
< Logo className = 'w-full' />
120
120
</ div >
121
121
< main className = 'grow text-black p-12' >
0 commit comments