Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_embed-meeting.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .embed-meeting {
  2. &-dialog {
  3. display: flex;
  4. flex-direction: column;
  5. &-header {
  6. display: flex;
  7. justify-content: space-between;
  8. margin: 16px 16px 24px;
  9. width: calc(100% - 32px);
  10. color: #fff;
  11. font-weight: 600;
  12. font-size: 24px;
  13. line-height: 32px;
  14. & > div > svg {
  15. cursor: pointer;
  16. fill: #A4B8D1;
  17. }
  18. }
  19. }
  20. &-copy {
  21. color: white;
  22. font-size: 15px;
  23. margin-left: auto;
  24. margin-top: 16px;
  25. width: auto;
  26. }
  27. &-code {
  28. background: transparent;
  29. border: 1px solid #A4B8D1;
  30. color: white;
  31. font-size: 15px;
  32. height: 165px;
  33. line-height: 24px;
  34. padding: 8px;
  35. width: 100%;
  36. resize: vertical;
  37. }
  38. &-trigger {
  39. display: flex;
  40. align-items: center;
  41. padding: 8px 8px 8px 16px;
  42. margin-top: 24px;
  43. width: calc(100% - 24px);
  44. height: 24px;
  45. background: #2A3A4B;
  46. border: 1px solid #5E6D7A;
  47. border-radius: 4px;
  48. cursor: pointer;
  49. .jitsi-icon {
  50. margin-right: 20px;
  51. }
  52. }
  53. }