PluginProbe
Pay with Vipps and MobilePay for WooCommerce / 5.4.0
Pay with Vipps and MobilePay for WooCommerce v5.4.0
6.2.2 6.2.1 6.2.0 6.1.10 6.1.9 6.1.8 6.1.7 6.1.6 6.1.5 6.1.4 6.1.3 6.1.2 6.1.1 6.1.0 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 5.4.3 5.4.2 5.4.1 5.4.0 5.3.4 All 184 releases
woo-vipps / recurring / src / entrypoints / checkout / main.scss

main.scss in Pay with Vipps and MobilePay for WooCommerce 5.4.0, at recurring/src/entrypoints/checkout/main.scss

41 lines 604 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #vipps-mobilepay-recurring-checkout {
2 width: 100%;
3 }
4
5 .vipps-recurring-checkout-page {
6 &__error {
7 text-align: center;
8
9 &__action {
10 //
11 }
12 }
13
14 &__loading {
15 display: flex;
16 justify-content: center;
17
18 &__spinner {
19 @keyframes spin {
20 to {
21 transform: rotate(360deg);
22 }
23 }
24 @-webkit-keyframes spin {
25 to {
26 transform: rotate(360deg);
27 }
28 }
29
30 display: inline-block;
31 margin: 20px 0;
32 width: 32px;
33 height: 32px;
34 border: 2px solid rgba(0, 0, 0, .3);
35 border-radius: 50%;
36 border-top-color: #161225;
37 animation: spin 1s ease-in-out infinite;
38 }
39 }
40 }
41