Skip to content

Commit

Permalink
Update responsive styles for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Agarwal committed Jan 16, 2024
1 parent 291f8c2 commit eab07bc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
overflow-y: scroll;
}

@media screen and (max-width: 768px) {
.bento-buzz {
padding: 16px;
gap: 16px;
}
}

.bento-buzz header {
display: flex;
justify-content: space-between;
Expand Down
6 changes: 6 additions & 0 deletions src/components/Articles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@
flex-direction: column;
flex: 1;
gap: 32px
}

@media screen and (max-width: 768px) {
.articles {
gap: 16px
}
}

0 comments on commit eab07bc

Please sign in to comment.