style.css 422 B

123456789101112131415161718192021222324252627282930
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .slack-context {
  6. display: inline-block;
  7. position: absolute;
  8. top: 0;
  9. bottom: 0;
  10. left: 0;
  11. width: 250px;
  12. overflow-x: hidden;
  13. overflow-y: scroll;
  14. }
  15. .slack-chat-container {
  16. display: inline-block;
  17. position: absolute;
  18. top: 0;
  19. bottom: 0;
  20. left: 250px;
  21. right: 0;
  22. }
  23. .slack-context-room.selected {
  24. background-color: lightgrey;
  25. }