.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; } }