Skip to content

Commit 0958bc6

Browse files
committed
Fix tests and mobile
1 parent 9b2482f commit 0958bc6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

site/src/components/FormCloseButton/FormCloseButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const useStyles = makeStyles((theme) => ({
4848
opacity: 1,
4949
},
5050

51-
[theme.breakpoints.down("md")]: {
51+
[theme.breakpoints.down("sm")]: {
5252
top: theme.spacing(1),
5353
right: theme.spacing(1),
5454
},

site/src/components/FullPageForm/FullPageHorizontalForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const useStyles = makeStyles((theme) => ({
4343
paddingTop: theme.spacing(6),
4444
paddingBottom: theme.spacing(8),
4545

46-
[theme.breakpoints.down("md")]: {
46+
[theme.breakpoints.down("sm")]: {
4747
paddingTop: theme.spacing(4),
4848
paddingBottom: theme.spacing(4),
4949
},

site/src/pages/CreateWorkspacePage/CreateWorkspacePageView.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export const CreateWorkspacePageView: FC<
300300

301301
const useStyles = makeStyles((theme) => ({
302302
formSections: {
303-
[theme.breakpoints.down("md")]: {
303+
[theme.breakpoints.down("sm")]: {
304304
gap: theme.spacing(8),
305305
},
306306
},
@@ -310,7 +310,7 @@ const useStyles = makeStyles((theme) => ({
310310
alignItems: "flex-start",
311311
gap: theme.spacing(15),
312312

313-
[theme.breakpoints.down("md")]: {
313+
[theme.breakpoints.down("sm")]: {
314314
flexDirection: "column",
315315
gap: theme.spacing(2),
316316
},
@@ -322,7 +322,7 @@ const useStyles = makeStyles((theme) => ({
322322
position: "sticky",
323323
top: theme.spacing(3),
324324

325-
[theme.breakpoints.down("md")]: {
325+
[theme.breakpoints.down("sm")]: {
326326
width: "100%",
327327
position: "initial",
328328
},
@@ -377,7 +377,7 @@ const useFormFooterStyles = makeStyles((theme) => ({
377377
button: {
378378
minWidth: theme.spacing(23),
379379

380-
[theme.breakpoints.down("md")]: {
380+
[theme.breakpoints.down("sm")]: {
381381
width: "100%",
382382
},
383383
},
@@ -388,7 +388,7 @@ const useFormFooterStyles = makeStyles((theme) => ({
388388
flexDirection: "row-reverse",
389389
gap: theme.spacing(2),
390390

391-
[theme.breakpoints.down("md")]: {
391+
[theme.breakpoints.down("sm")]: {
392392
flexDirection: "column",
393393
gap: theme.spacing(1),
394394
},

0 commit comments

Comments
 (0)