@gravityforms/components
Version:
UI components for use in Gravity Forms development. Both React and vanilla js flavors.
32 lines (24 loc) • 552 B
CSS
.gform-admin .gform-placeholder__group-container {
overflow: hidden;
}
.gform-admin .gform-placeholder__wrapper {
width: 100%;
}
.gform-admin .gform-placeholder__wrapper--animated .gform-placeholder {
animation: gravitysmtpOpacityCycle 1s infinite;
animation-delay: -0.5s;
}
.gform-admin .gform-placeholder {
background: #e4e9eb;
border-radius: 9999px;
display: inline-block;
}
@keyframes gformPlaceholderOpacityCycle {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
/*# sourceMappingURL=placeholder.css.map */