mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 18:25:12 +00:00
remove inline styles
This commit is contained in:
parent
d17a333fc6
commit
a515088e0b
2 changed files with 8 additions and 5 deletions
|
@ -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 && (
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue