Skip to content

Commit

Permalink
chore: update react-query styling in playground
Browse files Browse the repository at this point in the history
  • Loading branch information
devrnt committed Jan 6, 2021
1 parent fc6a9e1 commit 427996f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion playground/modules/wizard/reactQuery/lazyQuery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ import { useMutation } from 'react-query';
import { useWizard } from '../../../../dist';

const Container = styled('div')`
background: var(--step);
border: 1px solid #250b46;
border-radius: 2px;
padding: 2.75rem 0.35rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 35vh;
`;

Expand Down
6 changes: 5 additions & 1 deletion playground/modules/wizard/reactQuery/queryStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ import * as React from 'react';
import { useQuery } from 'react-query';

const Container = styled('div')`
background: var(--step);
border: 1px solid #250b46;
border-radius: 2px;
padding: 2.75rem 0.35rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 35vh;
`;

Expand Down

0 comments on commit 427996f

Please sign in to comment.