CryptoDonate: style form elements

datepicker-css
Alex Gleason 2021-06-09 18:53:13 -05:00
rodzic acbfd7bcc3
commit 940af0dd85
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
2 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

@ -53,7 +53,7 @@ export default class CryptoAddress extends ImmutablePureComponent {
</div>
</div>
{note && <div className='crypto-address__note'>{note}</div>}
<div className='crypto-address__address'>
<div className='crypto-address__address simple_form'>
<input ref={this.setInputRef} type='text' value={address} />
<button className='crypto-address__copy' onClick={this.handleCopyClick}>
<FormattedMessage id='crypto_donate.copy' defaultMessage='Copy' />

Wyświetl plik

@ -41,9 +41,21 @@
&__address {
margin-top: auto;
display: flex;
align-items: center;
justify-content: center;
input {
flex: 1;
font-size: 14px !important;
border-radius: 4px 0 0 4px !important;
}
button {
width: auto;
font-size: 14px;
margin: 0;
padding-bottom: 9px;
border-radius: 0 4px 4px 0;
}
}
}