profile setup flow clean up (#167)

* fixed update token on address change

* fetching already set profile data in setup flow

* select skills colors

* showing more data on player tile

* rename variables
This commit is contained in:
dan13ram
2020-10-23 22:33:31 +05:30
committed by GitHub
parent 424359993c
commit bf5fa29f8a
17 changed files with 373 additions and 204 deletions

View File

@@ -3,10 +3,10 @@ import Select, { Props as SelectProps, Styles } from 'react-select';
import { theme } from './theme';
const selectStyles: Styles = {
export const selectStyles: Styles = {
menu: (styles) => ({
...styles,
background: theme.colors.purple[400],
background: theme.colors.dark,
}),
menuList: (styles) => ({
...styles,

View File

@@ -43,4 +43,4 @@ export { MetaBox } from './MetaBox';
export { MetaTag } from './MetaTag';
export { H1, P } from './typography';
export { ResponsiveText } from './ResponsiveText';
export { SelectSearch } from './SelectSearch';
export { SelectSearch, selectStyles } from './SelectSearch';

View File

@@ -31,6 +31,7 @@ export const theme: Theme = {
'#__next': {
background: 'dark',
color: 'white',
minHeight: '100vh',
},
},
},