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.7KB

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