diff --git a/libs/market-info/src/components/fees-breakdown/fees-breakdown.tsx b/libs/market-info/src/components/fees-breakdown/fees-breakdown.tsx
index dcca1251d..747e3d1e0 100644
--- a/libs/market-info/src/components/fees-breakdown/fees-breakdown.tsx
+++ b/libs/market-info/src/components/fees-breakdown/fees-breakdown.tsx
@@ -74,7 +74,7 @@ export const FeesBreakdown = ({
: '-';
};
return (
-
+
- {t('Infrastructure fee')}
{feeFactors && (
-
@@ -83,7 +83,7 @@ export const FeesBreakdown = ({
)}
)}
- -
+
-
{formatValue(fees.infrastructureFee)} {symbol || ''}
- {t('Liquidity fee')}
@@ -94,7 +94,7 @@ export const FeesBreakdown = ({
)}
)}
- -
+
-
{formatValue(fees.liquidityFee)} {symbol || ''}
- {t('Maker fee')}
@@ -105,7 +105,7 @@ export const FeesBreakdown = ({
)}
)}
- -
+
-
{formatValue(fees.makerFee)} {symbol || ''}
- {t('Total fees')}
@@ -114,7 +114,7 @@ export const FeesBreakdown = ({
{totalFeesPercentage(feeFactors)}
)}
- -
+
-
{formatValue(totalFees)} {symbol || ''}
diff --git a/libs/ui-toolkit/src/components/tabs/tabs.tsx b/libs/ui-toolkit/src/components/tabs/tabs.tsx
index a727104a0..8b8127a02 100644
--- a/libs/ui-toolkit/src/components/tabs/tabs.tsx
+++ b/libs/ui-toolkit/src/components/tabs/tabs.tsx
@@ -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,