31 lines
530 B
SCSS
31 lines
530 B
SCSS
.async-form-response {
|
|
margin: 20px 0;
|
|
position: relative;
|
|
width: 100%;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
}
|
|
|
|
.async-form-response--success {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.async-form-response--success::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 50%;
|
|
display: block;
|
|
width: 17px;
|
|
height: 28px;
|
|
border: solid #000;
|
|
border-width: 0 5px 5px 0;
|
|
transform: translateX(-50%) rotate(45deg);
|
|
}
|
|
|
|
.async-form-loading {
|
|
opacity: 0.1;
|
|
transition: opacity 800ms ease-out;
|
|
pointer-events: none;
|
|
}
|