Merge pull request #6648 from mxmou/studio-comments-responsive

Fix studio comment issues on narrow screens
This commit is contained in:
Benjamin Wheeler 2022-06-08 10:39:52 -04:00 committed by GitHub
commit bac1e17d86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -73,6 +73,7 @@
.comment {
position: relative;
width: 100%;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: flex-start;
@ -98,6 +99,7 @@
.comment-top-row {
margin-bottom: 8px;
width: 100%;
flex-direction: row;
.username {
margin-right: auto;
@ -237,6 +239,7 @@
.comment-bottom-row {
padding-top: 1rem;
font-size: .75rem;
flex-direction: row;
justify-content: space-between;
.comment-time {

View file

@ -235,10 +235,6 @@ $stage-width: 480px;
width: 100%;
}
.comment, .comment-top-row, .comment-bottom-row {
flex-direction: row;
}
.comment-bubble {
text-align: left;
}