fix(lobby) Fix buttons colors (#11867)

This commit is contained in:
Robert Pintilii 2022-07-18 11:40:16 +03:00 committed by GitHub
parent 7995c7ed00
commit b259757c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -107,10 +107,11 @@ const styles = theme => {
position: 'relative',
textAlign: 'center',
width: '100%',
border: 0,
'&.primary': {
background: theme.palette.action01,
border: '1px solid #0376DA',
color: theme.palette.text01,
'&:hover': {
backgroundColor: theme.palette.action01Hover
@ -119,7 +120,11 @@ const styles = theme => {
'&.secondary': {
background: theme.palette.action02,
border: '1px solid transparent'
color: theme.palette.text04,
'&:hover': {
backgroundColor: theme.palette.action02Hover
}
},
'&.text': {