mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 13:06:41 -04:00
21 lines
343 B
SCSS
21 lines
343 B
SCSS
![]() |
.stripe-checkout{
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
.spinner{
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
margin-left: -20px;
|
||
|
margin-top: -5px;
|
||
|
display: none;
|
||
|
}
|
||
|
&.checkout-loading{
|
||
|
div:first-child{
|
||
|
opacity: 0.2;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
.spinner{
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|