remove inline styles

This commit is contained in:
Anthony 2021-08-23 18:30:12 +02:00
parent d17a333fc6
commit a515088e0b
No known key found for this signature in database
GPG key ID: C386D3C93D50E356
2 changed files with 8 additions and 5 deletions

View file

@ -291,11 +291,11 @@ function TxoList(props: Props) {
return ( return (
<Card <Card
title={ title={
<><div className="table__header-text" style={{display: 'inline'}}>{__(`Transactions`)}</div> <><div className="table__header-text">{__(`Transactions`)}</div>
<div style={{ display: 'inline'}}> <div className="txo__radios_container">
<fieldset-section style={{ display: 'inline'}}> <fieldset-section style={{display: 'inline'}} className="txo__radios_fieldset">
{/* toggle between LBC and fiat buttons */} {/* toggle between LBC and fiat buttons */}
<div className={'txo__radios'} style={{ display: 'inline'}}> <div className={'txo__radios'}>
{/* toggle to LBC */} {/* toggle to LBC */}
<Button <Button
button="alt" button="alt"
@ -408,7 +408,6 @@ function TxoList(props: Props) {
</div> </div>
)} )}
</div> </div>
{/* TODO: use card-between to display this properly */}
{/* export and refresh buttons */} {/* export and refresh buttons */}
<div className="card__actions--inline"> <div className="card__actions--inline">
{!isFetchingTransactions && transactionsFile === null && ( {!isFetchingTransactions && transactionsFile === null && (

View file

@ -24,3 +24,7 @@
font-size: 13px; font-size: 13px;
color: rgb(171, 171, 171); color: rgb(171, 171, 171);
} }
.txo__radios_container, .txo__radios, .txo__radios_fieldset {
display: inline !important;
}