+
diff --git a/libs/market-list/src/lib/components/select-market-columns.tsx b/libs/market-list/src/lib/components/select-market-columns.tsx
index 955a7bce6..89bb684d4 100644
--- a/libs/market-list/src/lib/components/select-market-columns.tsx
+++ b/libs/market-list/src/lib/components/select-market-columns.tsx
@@ -24,7 +24,7 @@ import type {
} from '../__generated__/MarketList';
import isNil from 'lodash/isNil';
-export const cellClassNames = 'px-2 py-1 first:text-left text-right capitalize';
+export const cellClassNames = 'px-0 py-1 first:text-left text-right';
const FeesInfo = () => {
return (
@@ -81,12 +81,12 @@ export const columnHeadersPositionMarkets: Column[] = [
onlyOnDetailed: false,
},
{
- value: t('24h High'),
+ value: t('24h high'),
className: `${cellClassNames} hidden xl:table-cell`,
onlyOnDetailed: true,
},
{
- value: t('24h Low'),
+ value: t('24h low'),
className: `${cellClassNames} hidden xl:table-cell`,
onlyOnDetailed: true,
},
@@ -139,12 +139,12 @@ export const columnHeaders: Column[] = [
onlyOnDetailed: false,
},
{
- value: t('24h High'),
+ value: t('24h high'),
className: `${cellClassNames} hidden xl:table-cell`,
onlyOnDetailed: true,
},
{
- value: t('24h Low'),
+ value: t('24h low'),
className: `${cellClassNames} hidden xl:table-cell`,
onlyOnDetailed: true,
},
@@ -264,7 +264,7 @@ export const columns = (
) : (
'-'
),
- className: `${cellClassNames} hidden xl:table-cell`,
+ className: `${cellClassNames} hidden xl:table-cell font-mono`,
onlyOnDetailed: true,
},
{
@@ -280,7 +280,7 @@ export const columns = (
) : (
'-'
),
- className: `${cellClassNames} hidden xl:table-cell`,
+ className: `${cellClassNames} hidden xl:table-cell font-mono`,
onlyOnDetailed: true,
},
{
@@ -304,13 +304,13 @@ export const columns = (
market.positionDecimalPlaces
)
: '-',
- className: `${cellClassNames} hidden lg:table-cell`,
+ className: `${cellClassNames} hidden lg:table-cell font-mono`,
onlyOnDetailed: true,
dataTestId: 'market-volume',
},
{
value:
,
- className: `${cellClassNames} hidden xl:table-cell`,
+ className: `${cellClassNames} hidden xl:table-cell font-mono`,
onlyOnDetailed: true,
dataTestId: 'taker-fee',
},
@@ -417,7 +417,7 @@ export const columnsPositionMarkets = (
) : (
'-'
),
- className: `${cellClassNames} hidden xl:table-cell`,
+ className: `${cellClassNames} hidden xl:table-cell font-mono`,
onlyOnDetailed: true,
},
{
@@ -433,7 +433,7 @@ export const columnsPositionMarkets = (
) : (
'-'
),
- className: `${cellClassNames} hidden xl:table-cell`,
+ className: `${cellClassNames} hidden xl:table-cell font-mono`,
onlyOnDetailed: true,
},
{
@@ -457,12 +457,12 @@ export const columnsPositionMarkets = (
market.positionDecimalPlaces
)
: '-',
- className: `${cellClassNames} hidden lg:table-cell`,
+ className: `${cellClassNames} hidden lg:table-cell font-mono`,
onlyOnDetailed: true,
},
{
value:
,
- className: `${cellClassNames} hidden xl:table-cell`,
+ className: `${cellClassNames} hidden xl:table-cell font-mono`,
onlyOnDetailed: true,
},
{
@@ -470,16 +470,16 @@ export const columnsPositionMarkets = (
{market.openVolume}
),
- className: `${cellClassNames} hidden xxl:table-cell`,
+ className: `${cellClassNames} hidden xxl:table-cell font-mono`,
onlyOnDetailed: true,
},
];
@@ -504,23 +504,23 @@ export const FeesBreakdown = ({
if (!feeFactors) return null;
return (
- - {t('Infrastructure Fee')}
+ - {t('Infrastructure fee')}
-
{formatNumberPercentage(
new BigNumber(feeFactors.infrastructureFee).times(100)
)}
- - {t('Liquidity Fee')}
+ - {t('Liquidity fee')}
-
{formatNumberPercentage(
new BigNumber(feeFactors.liquidityFee).times(100)
)}
- - {t('Maker Fee')}
+ - {t('Maker fee')}
-
{formatNumberPercentage(new BigNumber(feeFactors.makerFee).times(100))}
- - {t('Total Fees')}
+ - {t('Total fees')}
- {totalFees(feeFactors)}
);
diff --git a/libs/market-list/src/lib/components/select-market-table.tsx b/libs/market-list/src/lib/components/select-market-table.tsx
index 035d0ada1..faa2991cd 100644
--- a/libs/market-list/src/lib/components/select-market-table.tsx
+++ b/libs/market-list/src/lib/components/select-market-table.tsx
@@ -7,7 +7,7 @@ export const SelectMarketTableHeader = ({
headers = columnHeaders,
}) => {
return (
-
+
{headers.map(({ value, className, onlyOnDetailed }, i) => {
const thClass = classNames(
'font-normal text-neutral-500 dark:text-neutral-400',
@@ -37,7 +37,7 @@ export const SelectMarketTableRow = ({
}) => {
return (
{columns.map(({ value, className, dataTestId, onlyOnDetailed }, i) => {
if (!onlyOnDetailed || detailed === onlyOnDetailed) {
diff --git a/libs/market-list/src/lib/components/select-market.tsx b/libs/market-list/src/lib/components/select-market.tsx
index bd56d3445..bbfc0b778 100644
--- a/libs/market-list/src/lib/components/select-market.tsx
+++ b/libs/market-list/src/lib/components/select-market.tsx
@@ -76,7 +76,7 @@ export const SelectAllMarketsTableBody = ({
if (!data) return null;
return (
<>
-
+
{/* Border styles required to create space between tbody elements margin/padding dont work */}
@@ -100,7 +100,8 @@ export const SelectMarketPopover = ({
marketName: string;
onSelect: (id: string) => void;
}) => {
- const triggerClasses = 'flex items-center gap-4 whitespace-nowrap';
+ const triggerClasses =
+ 'sm:text-lg md:text-xl lg:text-2xl font-medium flex items-center gap-4 whitespace-nowrap my-3 hover:text-neutral-500 dark:hover:text-neutral-300';
const { keypair } = useVegaWallet();
const [open, setOpen] = useState(false);
const { data, loading: marketsLoading } = useMarketList();
@@ -149,7 +150,7 @@ export const SelectMarketPopover = ({
trigger={
{marketName}
-
+
}
>
@@ -167,7 +168,7 @@ export const SelectMarketPopover = ({
{keypair &&
positionMarkets?.markets &&
positionMarkets.markets.length > 0 && (
-
+
)}
-
+
{t('All markets')}
{
return (
-
+ |
{children}
|
diff --git a/libs/orders/src/lib/components/order-list/order-edit-dialog.tsx b/libs/orders/src/lib/components/order-list/order-edit-dialog.tsx
index 70f07e3e2..16eb1f998 100644
--- a/libs/orders/src/lib/components/order-list/order-edit-dialog.tsx
+++ b/libs/orders/src/lib/components/order-list/order-edit-dialog.tsx
@@ -78,7 +78,7 @@ export const OrderEditDialog = ({
-