47 lines
719 B
SCSS
47 lines
719 B
SCSS
.subscribe-buttons {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: left;
|
|
|
|
.btn-discourse-subscriptions-subscribe {
|
|
flex-direction: column;
|
|
margin: 0.25em;
|
|
padding: 1em;
|
|
width: 6em;
|
|
}
|
|
}
|
|
|
|
.btn-payment {
|
|
width: 100%;
|
|
}
|
|
|
|
.anon #card-element {
|
|
display: none;
|
|
}
|
|
|
|
.StripeElement {
|
|
box-sizing: border-box;
|
|
|
|
padding: 10px;
|
|
height: 40px;
|
|
margin-bottom: 20px;
|
|
|
|
border: 1px solid var(--primary);
|
|
background-color: var(--secondary);
|
|
|
|
font-size: $base-font-size;
|
|
font-family: $base-font-family;
|
|
}
|
|
|
|
.StripeElement--focus {
|
|
box-shadow: shadow("focus");
|
|
}
|
|
|
|
.StripeElement--invalid {
|
|
border-color: var(--danger);
|
|
}
|
|
|
|
.StripeElement--webkit-autofill {
|
|
color: var(--quaternary);
|
|
}
|