Fix min-height of PNP settings row
This commit is contained in:
parent
db86e29a92
commit
88bc146f0d
2 changed files with 11 additions and 1 deletions
|
@ -161,6 +161,10 @@
|
|||
margin: 0;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
&--pnp-sharing {
|
||||
min-height: 185px;
|
||||
}
|
||||
}
|
||||
|
||||
&__settings-row:not(:last-child) {
|
||||
|
|
|
@ -1104,7 +1104,13 @@ export function Preferences({
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<SettingsRow title={i18n('icu:Preferences__pnp__sharing--title')}>
|
||||
<SettingsRow
|
||||
title={i18n('icu:Preferences__pnp__sharing--title')}
|
||||
className={classNames('Preferences__settings-row--pnp-sharing', {
|
||||
'Preferences__settings-row--pnp-sharing--nobody':
|
||||
whoCanSeeMe === PhoneNumberSharingMode.Nobody,
|
||||
})}
|
||||
>
|
||||
<SettingsRadio
|
||||
onChange={onWhoCanSeeMeChange}
|
||||
options={[
|
||||
|
|
Loading…
Reference in a new issue