style changes

This commit is contained in:
Abhinav-grd 2021-04-08 11:48:28 +05:30
parent fa8afcc102
commit 7ba7044216
2 changed files with 7 additions and 7 deletions

View file

@ -110,23 +110,23 @@ const GlobalStyles = createGlobalStyle`
background-size: cover;
border: none;
}
.btn-primary , btn-primary:focus {
.btn-success , btn-success:focus {
background: #2dc262;
border-color: #29a354;
}
.btn-primary:hover {
.btn-success:hover {
background-color: #29a354;
border-color: #2dc262;
}
.btn-primary:disabled {
.btn-success:disabled {
background-color: #69b383;
}
.btn-outline-primary {
.btn-outline-success {
color: #2dc262;
border-color: #2dc262;
border-width: 2px;
}
.btn-outline-primary:hover {
.btn-outline-success:hover {
background: #2dc262;
}
.btn-outline-danger {
@ -135,7 +135,7 @@ const GlobalStyles = createGlobalStyle`
.btn-outline-secondary {
border-width: 2px;
}
.btn-outline-primary {
.btn-outline-success {
border-width: 2px;
}
.card {

View file

@ -7,7 +7,7 @@ import { setData, LS_KEYS } from 'utils/storage/localStorage';
import { convertBytesToGBs } from 'utils/billingUtil';
import { loadStripe, Stripe } from '@stripe/stripe-js';
enum PAYMENT_INTENT_STATUS {
export enum PAYMENT_INTENT_STATUS {
SUCCEEDED = 'succeeded',
REQUIRE_ACTION = 'requires_action',
REQUIRE_PAYMENT_METHOD = 'requires_payment_method',