@@ -27,34 +27,36 @@ export function UserQuickTools({
2727 < >
2828 { /* Doing it properly and nicely would require a major rewrite that would cause more trouble*/ }
2929 { ! isCollapsed && (
30- < Box
31- direction = "Row"
32- justifyContent = "SpaceBetween"
33- alignItems = "Center"
34- className = { css . UserQuickTools }
35- style = { {
36- opacity : isResizingSidebar ? '0%' : '100%' ,
37- transition : isResizingSidebar ? 'opacity 0.2s ease' : 'opacity 0.5s ease' ,
38- width : compact ? '100%' : toRem ( width ) ,
39- paddingRight : config . space . S300 ,
40- } }
41- >
42- < AccountSwitcherTab isBottom />
30+ < div style = { { position : 'relative' } } >
4331 < Box
32+ direction = "Row"
33+ justifyContent = "SpaceBetween"
34+ alignItems = "Center"
35+ className = { css . UserQuickTools }
4436 style = { {
45- gap : config . space . S300 ,
37+ opacity : isResizingSidebar ? '0%' : '100%' ,
38+ transition : isResizingSidebar ? 'opacity 0.2s ease' : 'opacity 0.5s ease' ,
39+ width : compact ? '100vw' : toRem ( width ) ,
40+ paddingRight : config . space . S300 ,
4641 } }
4742 >
48- { ! underOutstep && (
49- < >
50- < UnverifiedTab isBottom />
51- < InboxTab isBottom />
52- < SearchTab isBottom />
53- </ >
54- ) }
55- < SettingsTab isBottom />
43+ < AccountSwitcherTab isBottom />
44+ < Box
45+ style = { {
46+ gap : config . space . S300 ,
47+ } }
48+ >
49+ { ! underOutstep && (
50+ < >
51+ < UnverifiedTab isBottom />
52+ < InboxTab isBottom />
53+ < SearchTab isBottom />
54+ </ >
55+ ) }
56+ < SettingsTab isBottom />
57+ </ Box >
5658 </ Box >
57- </ Box >
59+ </ div >
5860 ) }
5961 </ >
6062 ) ;
0 commit comments