-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(admin-ui): separate some component styling code
- Loading branch information
1 parent
348cf90
commit 47af2e1
Showing
20 changed files
with
502 additions
and
492 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { makeStyles } from '@material-ui/core/styles' | ||
|
||
const styles = makeStyles((theme) => ({ | ||
root: { | ||
padding: '1px 10px 1px 10px', | ||
display: 'flex', | ||
alignItems: 'center', | ||
width: 300, | ||
borderRadius: 30, | ||
marginRight: 20, | ||
height: 40, | ||
marginTop: 10, | ||
}, | ||
input: { | ||
marginLeft: theme.spacing(1), | ||
flex: 1, | ||
}, | ||
iconButton: { | ||
padding: 10, | ||
}, | ||
mobile: { | ||
width: '90%', | ||
marginTop: 20, | ||
padding: '0 10px 0 10px', | ||
} | ||
})) | ||
|
||
export default styles |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { makeStyles } from '@material-ui/core/styles' | ||
|
||
const styles = makeStyles((theme) => ({ | ||
root: { | ||
display: 'flex', | ||
}, | ||
whiteColor: { | ||
color: '#FFFFFF', | ||
}, | ||
paper: { | ||
marginRight: theme.spacing(2), | ||
}, | ||
btnContainer: { | ||
position: 'relative', | ||
top: 8, | ||
textTransform: 'none', | ||
color: '#FFFFFF', | ||
}, | ||
topElm: { | ||
zIndex: 9999 | ||
} | ||
})) | ||
|
||
export default styles |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { makeStyles } from '@material-ui/core/styles' | ||
|
||
const styles = makeStyles({ | ||
list: { | ||
width: 250, | ||
}, | ||
fullList: { | ||
width: 'auto', | ||
}, | ||
whiteColor: { | ||
color: '#FFFFFF', | ||
position: 'relative', | ||
}, | ||
selectInfo: { | ||
textAlign: 'left', | ||
marginLeft: 30, | ||
fontSize: 16, | ||
fontWeight: '500', | ||
marginBottom: 10, | ||
}, | ||
selectContainer: { | ||
textAlign: 'center', | ||
marginTop: '25%' | ||
}, | ||
selectItem: { | ||
marginBottom: 20, | ||
cursor: 'pointer', | ||
paddingTop: 16, | ||
}, | ||
selectedItem: { | ||
background: '#eaeaea', | ||
}, | ||
selectImage: { | ||
width: '75%', | ||
}, | ||
selectTitle: { | ||
fontSize: 16, | ||
fontWeight: '600' | ||
} | ||
}) | ||
|
||
export default styles |
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
Oops, something went wrong.