VogelSocialMedia/code/frontend/src/components/feed/feed.css
2025-07-01 09:45:15 +02:00

35 lines
553 B
CSS

.feedContainer {
display: flex;
flex-direction: column;
min-height: calc(100vh - var(--Header-height));
background-color: #f9f9f9;
}
.feedContent {
flex: 1;
overflow-y: auto;
padding: 1rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
height: 80vh;
}
.loading {
width: 100%;
text-align: center;
margin-top: 1rem;
font-weight: bold;
color: #333;
}
/* Desktop responsive behavior */
@media (min-width: 768px) {
.feedContent {
width: 400px;
margin: 0 auto;
padding: 2rem 0;
}
}