This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.dashboard-event-tile { | |
display: grid; | |
// small screen | |
grid-template-rows: 1fr auto auto; | |
grid-template-columns: 4.375rem 1fr; | |
// medium screen | |
@media screen and (min-width: 45rem) { | |
grid-template-rows: 1fr auto auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.dashboard-event-tile { | |
display: grid; | |
// small screen | |
grid-template-areas: "image content" | |
"image content" | |
". meta"; | |
// medium screen | |
@media screen and (min-width: 45rem) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const tokenizationSpecification = { | |
type: 'PAYMENT_GATEWAY', | |
parameters: { | |
'gateway': 'fatzebra', | |
'gatewayMerchantId': "#{campaign.greenpay_googlepay_mid}" | |
} | |
}; | |
const allowedPaymentMethods = [{ | |
type: "CARD", |
OlderNewer