mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 18:08:50 +00:00
save
This commit is contained in:
parent
0edae08cd3
commit
32311fe6db
8 changed files with 20 additions and 39 deletions
36
code/frontend/src/components/feed/feed.css
Normal file
36
code/frontend/src/components/feed/feed.css
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
.feedContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
.feedContent {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
.loading {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
|
||||
/* Desktop responsive behavior */
|
||||
@media (min-width: 768px) {
|
||||
.feedContent {
|
||||
width: 600px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue