Skip to content

Commit

Permalink
Fix style theme overrided by the plugin style
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperstrongBE committed Nov 20, 2024
1 parent 7b33571 commit 6b42c8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions applications/apps/checkout/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@
* {
@apply border-border;
}
body {
checkout_body {
background-color: #f7f7f7;
}
}


2 changes: 1 addition & 1 deletion applications/apps/checkout/src/components/app-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const AppHeader = () => {
</div>
<div className="flex flex-col">
<span className="text-2xl md:text-4xl font-extrabold text-brand leading-4">
XPRCHECKOUT ?
XPRCHECKOUT
</span>
{config && config.gatewayNetwork === 'testnet' &&
<span className="text-sm text-gray-500">Using Testnet</span>
Expand Down
2 changes: 1 addition & 1 deletion includes/templates/template-payments.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</script>
<?php $g->payment_scripts(); ?>
</head>
<body class="<?php echo esc_html(join(" ",get_body_class())) ?>">
<body class="checkout_body <?php echo esc_html(join(" ",get_body_class())) ?>">


<div style='max-width:1040px;margin:0 auto' >
Expand Down

0 comments on commit 6b42c8f

Please sign in to comment.