-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed UI issues for Sidebar #634
base: develop
Are you sure you want to change the base?
Changes from all commits
4bd0e53
6d34acc
67ac114
4f779b9
7355815
f9cefcd
2b76bb9
57434e2
eda168b
2956300
b0d26cc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,7 @@ export const getMessageDividerStyles = (theme) => { | |
line-height: 1rem; | ||
position: relative; | ||
display: flex; | ||
z-index: 1000; | ||
z-index: 1; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a little afraid about z-index changes. It might disturb the existing flow in some situation. Is this required? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Spiral-Memory , actually due to a high value of z-index, the message divider was appearing on top of the sidebar like the image shown , so I had to decrease the value. |
||
align-items: center; | ||
margin-top: 0.5rem; | ||
margin-bottom: 0.75rem; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
importing set ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it was automatically imported by vs code . It doesn't have a use case in this context, I'll remove it.