You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_responsive.scss 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @media only screen and (max-width: $verySmallScreen) {
  2. .welcome {
  3. display: block;
  4. #enter_room {
  5. .welcome-page-button {
  6. font-size: 16px;
  7. left: 0;
  8. text-align: center;
  9. width: 100%;
  10. }
  11. }
  12. .header {
  13. background-color: #002637;
  14. .insecure-room-name-warning {
  15. width: 100%;
  16. }
  17. #enter_room {
  18. width: 100%;
  19. .join-meeting-container {
  20. padding: 0;
  21. flex-direction: column;
  22. background: transparent;
  23. }
  24. .enter-room-input-container {
  25. padding-right: 0;
  26. margin-bottom: 10px;
  27. }
  28. }
  29. }
  30. .header-text-title {
  31. text-align: center;
  32. }
  33. .welcome-cards-container {
  34. padding: 0;
  35. }
  36. &.without-content {
  37. .header {
  38. height: 100%;
  39. }
  40. }
  41. #moderated-meetings {
  42. display: none;
  43. }
  44. .welcome-footer-row-block {
  45. display: block;
  46. }
  47. }
  48. }
  49. .desktop-browser {
  50. &.shift-right {
  51. @media only screen and (max-width: $verySmallScreen + $sidebarWidth) {
  52. #videoResolutionLabel {
  53. display: none;
  54. }
  55. .vertical-filmstrip .filmstrip {
  56. display: none;
  57. }
  58. .chrome-extension-banner {
  59. display: none;
  60. }
  61. }
  62. }
  63. }