-
Notifications
You must be signed in to change notification settings - Fork 62
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
[Float] Chat Disappears Behind Channels #46
Comments
I found the following rule which seems to interfere with the theme. Disabling it with devtools seems to fix the problem. html:not(.visual-refresh) .sidebar_a4d4d9:not(.hidden_a4d4d9) {
width: 240px !important;
}
|
heres the fix for anyone struggling to figure out how to disable this, 2024-12-17.20-15-30.mp4 |
Hello guys, you can simply add these lines in your custom css settings in betterdiscord: html:not(.visual-refresh) div .sidebar_a4d4d9:not(.hidden_a4d4d9) {
width: unset !important;
} Works like a charm for me :) |
omg this is so much easier, tysm 😭 |
Hi again guys, to resolve the width problem, you can simply add a max-width to your css, by default it's 240px. html:not(.visual-refresh) div .sidebar_a4d4d9:not(.hidden_a4d4d9) {
width: fit-content !important;
max-width: 240px !important
} |
i did this instead as i still had issue with short channel names causing the bar to shrink @media (max-width:940px) {
html:not(.visual-refresh) div .sidebar_a4d4d9:not(.hidden_a4d4d9) {
width: fit-content !important;
}
} |
I don't even know how to describe this issue lmao but I disabled any extensions that might've broken and it still gave me this issue.
Recording.2024-12-14.105633.mp4
The text was updated successfully, but these errors were encountered: