Skip to content

Commit a96bd6c

Browse files
committed
🧹
1 parent 2104d9e commit a96bd6c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

site/src/pages/TemplatePage/TemplateEmbedPage/TemplateEmbedPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const TemplateEmbedPageView: FC<{
101101
{!buttonValues || !templateParameters ? (
102102
<Loader />
103103
) : (
104-
<div css={{ display: "flex", alignItems: "flex-start", gap: 6 }}>
104+
<div css={{ display: "flex", alignItems: "flex-start", gap: 48 }}>
105105
<div css={{ flex: 1, maxWidth: 400 }}>
106106
<VerticalForm>
107107
<FormSection

site/src/pages/UserSettingsPage/WorkspaceProxyPage/WorkspaceProxyRow.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,13 @@ const ProxyMessagesList: FC<ProxyMessagesListProps> = ({ title, messages }) => {
128128
css={{
129129
borderBottom: `1px solid ${theme.palette.divider}`,
130130
backgroundColor: theme.palette.background.default,
131-
p: "16px 24px",
131+
padding: "16px 24px",
132132
}}
133133
>
134134
<div
135135
id="nested-list-subheader"
136136
css={{
137-
mb: 0.5,
137+
marginBottom: 4,
138138
fontSize: 13,
139139
fontWeight: 600,
140140
}}
@@ -143,7 +143,7 @@ const ProxyMessagesList: FC<ProxyMessagesListProps> = ({ title, messages }) => {
143143
</div>
144144
{messages.map((error, index) => (
145145
<pre
146-
key={"message" + index}
146+
key={index}
147147
css={{
148148
margin: "0 0 8px",
149149
fontSize: 14,

site/src/pages/WorkspacesPage/WorkspacesTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const WorkspacesTable: FC<WorkspacesTableProps> = ({
5757
<TableHead>
5858
<TableRow>
5959
<TableCell width="40%">
60-
<div css={{ display: "flex", alignItems: "center", gap: 1 }}>
60+
<div css={{ display: "flex", alignItems: "center", gap: 8 }}>
6161
{canCheckWorkspaces && (
6262
<Checkbox
6363
// Remove the extra padding added for the first cell in the

0 commit comments

Comments
 (0)