feat: update styling
This commit is contained in:
@@ -41,24 +41,20 @@ export const DealTicketButton = ({ disabled, variant, assetSymbol }: Props) => {
|
||||
with {assetSymbol} to start trading in this market.
|
||||
</p>
|
||||
}
|
||||
buttonProps={{
|
||||
text: 'Connect wallet',
|
||||
action: openVegaWalletDialog,
|
||||
className: 'px-14',
|
||||
}}
|
||||
/>
|
||||
<div>
|
||||
<Button
|
||||
variant="default"
|
||||
fill
|
||||
type="button"
|
||||
data-testid="order-connect-wallet"
|
||||
onClick={openVegaWalletDialog}
|
||||
className="my-2"
|
||||
>
|
||||
{t('Connect wallet')}
|
||||
</Button>
|
||||
<Button
|
||||
variant={variant}
|
||||
fill
|
||||
type="submit"
|
||||
disabled={true}
|
||||
data-testid="place-order"
|
||||
className="my-2"
|
||||
>
|
||||
{t('Place order')}
|
||||
</Button>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export const positiveClassNames = 'text-vega-green dark:text-vega-green';
|
||||
export const positiveClassNames = 'text-vega-green-550 dark:text-vega-green';
|
||||
export const negativeClassNames = 'text-vega-pink dark:text-vega-pink';
|
||||
|
||||
const isPositive = ({ value }: { value: string | bigint | number }) =>
|
||||
|
||||
@@ -75,7 +75,7 @@ export const Notification = ({
|
||||
<Button
|
||||
size="sm"
|
||||
onClick={buttonProps.action}
|
||||
className={classNames('mt-2 px-6 py-3', buttonProps.className)}
|
||||
className={classNames(buttonProps.className)}
|
||||
>
|
||||
{buttonProps.text}
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user