Quellcode durchsuchen

fix(thresholds) adjust thresholds for smaller width integrations (#10749)

allows chat button to be displayed when there should be enough space for it
master
Avram Tudor vor 4 Jahren
Ursprung
Commit
22ffcf922a
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      react/features/toolbox/constants.js

+ 2
- 2
react/features/toolbox/constants.js Datei anzeigen

@@ -19,11 +19,11 @@ export const THRESHOLDS = [
19 19
         order: [ 'microphone', 'camera', 'chat', 'participants' ]
20 20
     },
21 21
     {
22
-        width: 320,
22
+        width: 225,
23 23
         order: [ 'microphone', 'camera', 'chat' ]
24 24
     },
25 25
     {
26
-        width: 270,
26
+        width: 200,
27 27
         order: [ 'microphone', 'camera' ]
28 28
     }
29 29
 ];

Laden…
Abbrechen
Speichern