# woo-vipps/6.2.4/recurring/src/entrypoints/checkout/main.scss

Pay with Vipps and MobilePay for WooCommerce, version 6.2.4. 41 lines.

- Page: https://pluginprobe.com/plugins/woo-vipps/6.2.4/code/recurring/src/entrypoints/checkout/main.scss
- Raw: https://pluginprobe.com/plugins/woo-vipps/6.2.4/raw/recurring/src/entrypoints/checkout/main.scss
- Modified: 2026-01-06T11:44:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woo-vipps/6.2.4/code/recurring/src/entrypoints/checkout/main.scss#L10-L20`.

```scss
#vipps-mobilepay-recurring-checkout {
	width: 100%;
}

.vipps-recurring-checkout-page {
	&__error {
		text-align: center;

		&__action {
			//
		}
	}

	&__loading {
		display: flex;
		justify-content: center;

		&__spinner {
			@keyframes spin {
				to {
					transform: rotate(360deg);
				}
			}
			@-webkit-keyframes spin {
				to {
					transform: rotate(360deg);
				}
			}

			display: inline-block;
			margin: 20px 0;
			width: 32px;
			height: 32px;
			border: 2px solid rgba(0, 0, 0, .3);
			border-radius: 50%;
			border-top-color: #161225;
			animation: spin 1s ease-in-out infinite;
		}
	}
}

```
