Skip to content

Commit 427996f

Browse files
committed
chore: update react-query styling in playground
1 parent fc6a9e1 commit 427996f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

playground/modules/wizard/reactQuery/lazyQuery.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ import { useMutation } from 'react-query';
55
import { useWizard } from '../../../../dist';
66

77
const Container = styled('div')`
8+
background: var(--step);
9+
border: 1px solid #250b46;
10+
border-radius: 2px;
11+
padding: 2.75rem 0.35rem;
812
display: flex;
13+
flex-direction: column;
914
justify-content: center;
1015
align-items: center;
11-
flex-direction: column;
1216
min-height: 35vh;
1317
`;
1418

playground/modules/wizard/reactQuery/queryStep.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ import * as React from 'react';
33
import { useQuery } from 'react-query';
44

55
const Container = styled('div')`
6+
background: var(--step);
7+
border: 1px solid #250b46;
8+
border-radius: 2px;
9+
padding: 2.75rem 0.35rem;
610
display: flex;
11+
flex-direction: column;
712
justify-content: center;
813
align-items: center;
9-
flex-direction: column;
1014
min-height: 35vh;
1115
`;
1216

0 commit comments

Comments
 (0)