Merge branch 'release/testnet' of github.com:vegaprotocol/frontend-monorepo into feat/margin-maintenance-level

This commit is contained in:
Madalina Raicu
2023-02-23 12:18:46 +00:00
2 changed files with 6 additions and 6 deletions
@@ -74,7 +74,7 @@ export const FeesBreakdown = ({
: '-';
};
return (
<dl className="grid grid-cols-5">
<dl className="grid grid-cols-6">
<dt className="col-span-2">{t('Infrastructure fee')}</dt>
{feeFactors && (
<dd className="text-right col-span-1">
@@ -83,7 +83,7 @@ export const FeesBreakdown = ({
)}
</dd>
)}
<dd className="text-right col-span-2">
<dd className="text-right col-span-3">
{formatValue(fees.infrastructureFee)} {symbol || ''}
</dd>
<dt className="col-span-2">{t('Liquidity fee')}</dt>
@@ -94,7 +94,7 @@ export const FeesBreakdown = ({
)}
</dd>
)}
<dd className="text-right col-span-2">
<dd className="text-right col-span-3">
{formatValue(fees.liquidityFee)} {symbol || ''}
</dd>
<dt className="col-span-2">{t('Maker fee')}</dt>
@@ -105,7 +105,7 @@ export const FeesBreakdown = ({
)}
</dd>
)}
<dd className="text-right col-span-2">
<dd className="text-right col-span-3">
{formatValue(fees.makerFee)} {symbol || ''}
</dd>
<dt className="col-span-2">{t('Total fees')}</dt>
@@ -114,7 +114,7 @@ export const FeesBreakdown = ({
{totalFeesPercentage(feeFactors)}
</dd>
)}
<dd className="text-right col-span-2">
<dd className="text-right col-span-3">
{formatValue(totalFees)} {symbol || ''}
</dd>
</dl>
+1 -1
View File
@@ -28,7 +28,7 @@ export const Tabs = ({ children, active: activeDefaultId }: TabsProps) => {
if (!isValidElement(child) || child.props.hidden) return null;
const isActive = child.props.id === activeTab;
const triggerClass = classNames(
'relative px-4 py-2 border-r border-default',
'relative px-4 py-1 border-r border-default',
'uppercase',
{
'cursor-default': isActive,