mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 00:48:48 +00:00
35 lines
553 B
CSS
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;
|
|
}
|
|
}
|
|
|