Improve community tab responsiveness (#3344)

* Make channel page 📱responsive again

* Even out padding on the inside of `ft-community-post`
This commit is contained in:
Emma 2023-03-22 08:44:19 -04:00 committed by GitHub
parent fe44a75275
commit 86962f2802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -4,6 +4,13 @@
.outside {
margin: auto;
width: 40%;
@media screen and (max-width: 768px) {
width: 100%;
}
}
.ft-list-post {
box-sizing: border-box;
}
.circle {

View File

@ -7,6 +7,7 @@
.channelDetails {
padding: 0;
max-width: 92vw;
}
.channelBannerContainer {
@ -240,4 +241,11 @@
width: 100%;
max-width: none;
}
.tabs {
overflow-x: scroll;
}
#communityPanel {
margin-top: 1rem;
}
}