global.css 508 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. -webkit-app-region: no-drag;
  6. }
  7. img.emoji {
  8. height: 1em !important;
  9. width: 1em !important;
  10. margin: 0 .05em 0 .1em;
  11. vertical-align: -0.1em;
  12. user-select: none;
  13. }
  14. .single-line {
  15. max-width: 100%;
  16. text-overflow: ellipsis;
  17. overflow: hidden;
  18. white-space: nowrap;
  19. }
  20. ul,
  21. ol {
  22. list-style: none;
  23. }
  24. div,
  25. button,
  26. img,
  27. video {
  28. outline: none;
  29. }
  30. p,
  31. div {
  32. word-break: break-all;
  33. user-select: none;
  34. }