fix: text color of no data message, add connect buttons to trade grid user section (#2246)
This commit is contained in:
parent
02410df2d7
commit
995f1f1eaf
@ -37,6 +37,7 @@ import { MarketMarkPrice } from '../../components/market-mark-price';
|
||||
import { MarketTradingModeComponent } from '../../components/market-trading-mode';
|
||||
import { Last24hVolume } from '../../components/last-24h-volume';
|
||||
import { MarketProposalNotification } from '@vegaprotocol/governance';
|
||||
import { VegaWalletContainer } from '../../components/vega-wallet-container';
|
||||
|
||||
const NO_MARKET = t('No market');
|
||||
|
||||
@ -261,16 +262,24 @@ const MainGrid = ({
|
||||
<TradeGridChild>
|
||||
<Tabs>
|
||||
<Tab id="positions" name={t('Positions')}>
|
||||
<TradingViews.Positions />
|
||||
<VegaWalletContainer>
|
||||
<TradingViews.Positions />
|
||||
</VegaWalletContainer>
|
||||
</Tab>
|
||||
<Tab id="orders" name={t('Orders')}>
|
||||
<TradingViews.Orders />
|
||||
<VegaWalletContainer>
|
||||
<TradingViews.Orders />
|
||||
</VegaWalletContainer>
|
||||
</Tab>
|
||||
<Tab id="fills" name={t('Fills')}>
|
||||
<TradingViews.Fills />
|
||||
<VegaWalletContainer>
|
||||
<TradingViews.Fills />
|
||||
</VegaWalletContainer>
|
||||
</Tab>
|
||||
<Tab id="accounts" name={t('Collateral')}>
|
||||
<TradingViews.Collateral />
|
||||
<VegaWalletContainer>
|
||||
<TradingViews.Collateral />
|
||||
</VegaWalletContainer>
|
||||
</Tab>
|
||||
</Tabs>
|
||||
</TradeGridChild>
|
||||
|
@ -7,7 +7,7 @@ export interface SplashProps {
|
||||
|
||||
export const Splash = ({ children }: SplashProps) => {
|
||||
const splashClasses = classNames(
|
||||
'w-full h-full text-xs text-center text-gray-200',
|
||||
'w-full h-full text-xs text-center text-gray-800 dark:text-gray-200',
|
||||
'flex items-center justify-center'
|
||||
);
|
||||
return <div className={splashClasses}>{children}</div>;
|
||||
|
Loading…
Reference in New Issue
Block a user