Advertisement
Go1den

BetterDiscord fix for new UI ugliness

Mar 25th, 2025 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. /* Note, this script assumes you have the following Appearance Settings:
  2. UI Density set to Default
  3. Chat Message Display set to Default
  4. It may work if you have other settings than these, but no guarantees.
  5. */
  6.  
  7. /* Replace the Discord font with whatever font you want */
  8. :root {
  9. --font-primary: "Calibri";
  10. }
  11.  
  12. /* Align the user box in the bottom left with the message box in the bottom center
  13. Note this change requires the next two CSS definitions */
  14. .channelBottomBarArea_f75fb0 {
  15. margin-top: 0px !important;
  16. }
  17.  
  18. .channelTextArea_f75fb0 {
  19. margin-bottom: 8px;
  20. min-height: 56px !important;
  21. }
  22. /* End of changes for alignment issue */
  23.  
  24. /* Remove the rounded corners on the Message box */
  25. .channelTextArea_f75fb0 {
  26. border-radius: 0px !important;
  27. }
  28.  
  29. /* Remove the rounded corners on the User box */
  30. .panels_c48ade {
  31. border-radius: 0px !important;
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement