File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed
site/src/pages/WorkspacePage Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { type FC, useEffect } from "react";
5
5
import { useNavigate } from "react-router-dom" ;
6
6
import type * as TypesGen from "api/typesGenerated" ;
7
7
import { Alert , AlertDetail } from "components/Alert/Alert" ;
8
- import { Stack } from "components/Stack/Stack" ;
9
8
import { AgentRow } from "components/Resources/AgentRow" ;
10
9
import { useTab } from "hooks" ;
11
10
import {
@@ -186,7 +185,7 @@ export const Workspace: FC<WorkspaceProps> = ({
186
185
187
186
< div css = { styles . content } >
188
187
< div css = { styles . dotBackground } >
189
- < Stack direction = " column" css = { styles . firstColumnSpacer } spacing = { 4 } >
188
+ < div css = { { display : "flex" , flexDirection : " column", gap : 24 } } >
190
189
< WorkspaceNotifications
191
190
workspace = { workspace }
192
191
template = { template }
@@ -252,7 +251,7 @@ export const Workspace: FC<WorkspaceProps> = ({
252
251
) }
253
252
/>
254
253
) }
255
- </ Stack >
254
+ </ div >
256
255
</ div >
257
256
</ div >
258
257
</ div >
@@ -272,7 +271,7 @@ const styles = {
272
271
273
272
dotBackground : ( theme ) => ( {
274
273
minHeight : "100%" ,
275
- padding : 24 ,
274
+ padding : 23 ,
276
275
"--d" : "1px" ,
277
276
background : `
278
277
radial-gradient(
@@ -292,8 +291,4 @@ const styles = {
292
291
flexDirection : "column" ,
293
292
} ,
294
293
} ) ,
295
-
296
- firstColumnSpacer : {
297
- flex : 2 ,
298
- } ,
299
294
} satisfies Record < string , Interpolation < Theme > > ;
Original file line number Diff line number Diff line change @@ -204,8 +204,8 @@ export const WorkspaceNotifications: FC<WorkspaceNotificationsProps> = (
204
204
alignItems : "center" ,
205
205
gap : 8 ,
206
206
position : "fixed" ,
207
- bottom : 24 ,
208
- right : 24 ,
207
+ bottom : 48 ,
208
+ right : 48 ,
209
209
zIndex : 10 ,
210
210
} }
211
211
>
You can’t perform that action at this time.
0 commit comments