| 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 |
|