Make joindialog text bold and bigger, fixes #154
parent
e574791cf0
commit
ddd93038c4
|
|
@ -316,6 +316,7 @@ const JoinDialog = ({
|
||||||
className={classes.green}
|
className={classes.green}
|
||||||
gutterBottom
|
gutterBottom
|
||||||
variant='h6'
|
variant='h6'
|
||||||
|
style={{ fontWeight: '600' }}
|
||||||
align='center'
|
align='center'
|
||||||
>
|
>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
|
@ -324,7 +325,11 @@ const JoinDialog = ({
|
||||||
/>
|
/>
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
{ room.signInRequired ?
|
{ room.signInRequired ?
|
||||||
<DialogContentText gutterBottom>
|
<DialogContentText
|
||||||
|
gutterBottom
|
||||||
|
variant='h5'
|
||||||
|
style={{ fontWeight: '600' }}
|
||||||
|
>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='room.emptyRequireLogin'
|
id='room.emptyRequireLogin'
|
||||||
defaultMessage={
|
defaultMessage={
|
||||||
|
|
@ -334,7 +339,11 @@ const JoinDialog = ({
|
||||||
/>
|
/>
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
:
|
:
|
||||||
<DialogContentText gutterBottom>
|
<DialogContentText
|
||||||
|
gutterBottom
|
||||||
|
variant='h5'
|
||||||
|
style={{ fontWeight: '600' }}
|
||||||
|
>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='room.locketWait'
|
id='room.locketWait'
|
||||||
defaultMessage='The room is locked - hang on until somebody lets you in ...'
|
defaultMessage='The room is locked - hang on until somebody lets you in ...'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue