fix(SecurityDialog): fix button overflow

This commit is contained in:
Mihai Uscat 2020-05-21 15:49:51 +03:00 committed by Zoltan Bettenbuk
parent 5977f09202
commit 663a65ad81
4 changed files with 7 additions and 6 deletions

View File

@ -38,6 +38,7 @@
}
.info-password-input {
width: 100%;
background-color: transparent;
border: none;
color: inherit;

View File

@ -21,11 +21,10 @@
&-button {
display: flex;
justify-content: space-between;
align-items: center;
margin: auto;
padding: 8px 16px;
width: 152px;
width: fit-content;
width: -moz-fit-content;
height: 24px;
background: #0376DA;
border-radius: 3px;
@ -38,6 +37,7 @@
}
&-text {
margin-left: 8px;
font-size: 15px;
line-height: 24px;
}

View File

@ -17,8 +17,8 @@
color: #6FB1EA;
}
& > a + a {
margin-left: 24px;
& > :first-child:not(:last-child) {
margin-right: 24px;
}
}
}

View File

@ -56,7 +56,7 @@ function InviteMore({
className = 'invite-more-button'
onClick = { onClick }>
<Icon src = { IconInviteMore } />
<div className = 'invite-more-text'>
<div className = 'invite-more-button-text'>
{t('addPeople.inviteMorePrompt')}
</div>
</div>