pkg-components
Version:
50 lines (42 loc) • 695 B
CSS
.footer_modal {
bottom: 0;
left: 0;
width: 100%;
right: 0;
margin: auto;
padding: 0 10px;
justify-content: space-between;
display: flex;
border-top: 1px solid var(--color-neutral-gray-silver);
}
.container {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
.fadeIn {
animation: fadeIn .1s linear;
}
.fadeOut {
animation: fadeOut 1.s linear;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}