mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix(site): fix workspace resource width on ultra wide screens (#11596)
This commit is contained in:
@@ -182,7 +182,15 @@ export const Workspace: FC<WorkspaceProps> = ({
|
||||
|
||||
<div css={styles.content}>
|
||||
<div css={styles.dotBackground}>
|
||||
<div css={{ display: "flex", flexDirection: "column", gap: 24 }}>
|
||||
<div
|
||||
css={{
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
gap: 24,
|
||||
maxWidth: 24 * 50,
|
||||
margin: "auto",
|
||||
}}
|
||||
>
|
||||
{workspace.latest_build.status === "deleted" && (
|
||||
<WorkspaceDeletedBanner
|
||||
handleClick={() => navigate(`/templates`)}
|
||||
|
||||
Reference in New Issue
Block a user