Files
my-links/inertia/mantine/components/dashboard/link/no_link.module.css
2024-11-10 00:00:20 +01:00

28 lines
382 B
CSS

.noCollection {
min-width: 0;
display: flex;
flex: 1;
align-items: center;
justify-content: center;
flex-direction: column;
animation: fadeIn 0.3s both;
}
.text {
min-width: 0;
width: 100%;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}