fix(lobby) Fix buttons colors (#11867)
This commit is contained in:
parent
7995c7ed00
commit
b259757c79
|
@ -107,10 +107,11 @@ const styles = theme => {
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
textAlign: 'center',
|
textAlign: 'center',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
|
border: 0,
|
||||||
|
|
||||||
'&.primary': {
|
'&.primary': {
|
||||||
background: theme.palette.action01,
|
background: theme.palette.action01,
|
||||||
border: '1px solid #0376DA',
|
color: theme.palette.text01,
|
||||||
|
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
backgroundColor: theme.palette.action01Hover
|
backgroundColor: theme.palette.action01Hover
|
||||||
|
@ -119,7 +120,11 @@ const styles = theme => {
|
||||||
|
|
||||||
'&.secondary': {
|
'&.secondary': {
|
||||||
background: theme.palette.action02,
|
background: theme.palette.action02,
|
||||||
border: '1px solid transparent'
|
color: theme.palette.text04,
|
||||||
|
|
||||||
|
'&:hover': {
|
||||||
|
backgroundColor: theme.palette.action02Hover
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
'&.text': {
|
'&.text': {
|
||||||
|
|
Loading…
Reference in New Issue