-
Notifications
You must be signed in to change notification settings - Fork 0
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 #39 from reedoooo/refine/logicandstyles
many fixes for stats and selectors
- Loading branch information
Showing
182 changed files
with
2,132 additions
and
7,850 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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,47 @@ | ||
import colors from 'assets/themes/base/colors'; | ||
import borders from 'assets/themes/base/borders'; | ||
import boxShadows from 'assets/themes/base/boxShadows'; | ||
import pxToRem from 'assets/themes/functions/pxToRem'; | ||
|
||
const { grey, white, success } = colors; | ||
const { borderRadius } = borders; | ||
const { tabsBoxShadow } = boxShadows; | ||
|
||
export default { | ||
styleOverrides: { | ||
root: { | ||
position: 'relative', | ||
backgroundColor: grey.default, | ||
borderRadius: borderRadius.xl, | ||
minHeight: 'unset', | ||
padding: pxToRem(4), | ||
}, | ||
|
||
flexContainer: { | ||
height: '100%', | ||
position: 'relative', | ||
zIndex: 10, | ||
}, | ||
|
||
fixed: { | ||
overflow: 'unset !important', | ||
overflowX: 'unset !important', | ||
}, | ||
|
||
vertical: { | ||
'& .MuiTabs-indicator': { | ||
width: '100%', | ||
// color: `${success.main} !important`, | ||
}, | ||
}, | ||
|
||
indicator: { | ||
height: '100%', | ||
borderRadius: borderRadius.lg, | ||
backgroundColor: success.dark, | ||
boxShadow: tabsBoxShadow.indicator, | ||
transition: 'all 500ms ease', | ||
color: `${success.dark} !important`, | ||
}, | ||
}, | ||
}; |
Oops, something went wrong.