Advertisement
Guest User

s4k - Sidebery Styles Editor

a guest
Dec 3rd, 2024
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | Source Code | 0 0
  1. /* Wraps Pinned Icons */
  2. .PinnedTabsBar { overflow: hidden !important; flex-wrap: nowrap!important;}
  3.  
  4. /* Adjust styles according to sidebar width */
  5.  
  6. /* Activates on Collapse */
  7. @media screen and (max-width: 38px) {
  8. #root {
  9. --tabs-indent: unset !important;
  10. }
  11. .ScrollBox > .scroll-container {
  12. overflow: hidden !important;
  13. }
  14. .Tab .audio {
  15. left: 10px !important;
  16. transform: scale(.80) !important;
  17. transform: translateY(4px) !important;
  18. }
  19. .audio {
  20. z-index: 100 !important;
  21. }
  22. .Tab .title {
  23. visibility: collapse !important;
  24. }
  25. }
  26. /* Activates When not Collapsed */
  27. @media screen and (min-width: 38px) {
  28. .Tab .audio {
  29. left: 10px !important;
  30. top: 4px !important;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement