fix(ui-toolkit): visual fixes for healthbar - % and text colours (#4156)

This commit is contained in:
Ciaran McGhie 2023-06-21 19:13:19 +01:00 committed by GitHub
parent 180de8cf25
commit ec12811f72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{ {
"name": "@vegaprotocol/ui-toolkit", "name": "@vegaprotocol/ui-toolkit",
"version": "0.12.4" "version": "0.12.5"
} }

View File

@ -82,12 +82,12 @@ const Level = ({
: '-'; : '-';
const tooltipContent = ( const tooltipContent = (
<> <div className="text-vega-dark-100 dark:text-vega-light-200">
<div className="mt-1.5 inline-flex"> <div className="mt-1.5 inline-flex">
<Indicator variant={intent} /> <Indicator variant={intent} />
</div> </div>
<span> <span>
{formattedFee}% {t('Fee')} {formattedFee} {t('Fee')}
</span> </span>
<div className="flex flex-col"> <div className="flex flex-col">
<span> <span>
@ -95,7 +95,7 @@ const Level = ({
{addDecimalsFormatNumber(commitmentAmount, decimals)} {addDecimalsFormatNumber(commitmentAmount, decimals)}
</span> </span>
</div> </div>
</> </div>
); );
return ( return (