-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1266 from edenia/feat/improve-UI-faucet
Feat/improve UI faucet
- Loading branch information
Showing
4 changed files
with
65 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,30 @@ | ||
export default (theme) => ({ | ||
formControl: { | ||
margin: theme.spacing(2), | ||
margin: theme.spacing(6, 4, 4), | ||
display: 'flex', | ||
flexDirection: 'column', | ||
gap: theme.spacing(4), | ||
minHeight: '150px', | ||
justifyContent: 'center', | ||
'& .MuiFormControl-root': { | ||
width: '300px', | ||
}, | ||
}, | ||
test: { | ||
display: 'flex', | ||
justifyContent: 'center', | ||
[theme.breakpoints.down('md')]: { | ||
display: 'block', | ||
flexWrap: 'wrap', | ||
height: '100% !important', | ||
}, | ||
marginBottom: theme.spacing(4), | ||
}, | ||
card: { | ||
padding: '10px', | ||
height: '100%', | ||
'& .MuiPaper-root': { | ||
height: '100%', | ||
boxShadow: '0px 1px 5px rgba(0, 0, 0, 0.15) !important', | ||
} | ||
}, | ||
}, | ||
}) |