Browse Source

fix(SecurityDialog): fix button overflow

j8
Mihai Uscat 5 years ago
parent
commit
663a65ad81

+ 1
- 0
css/modals/invite/_info.scss View File

38
     }
38
     }
39
 
39
 
40
     .info-password-input {
40
     .info-password-input {
41
+        width: 100%;
41
         background-color: transparent;
42
         background-color: transparent;
42
         border: none;
43
         border: none;
43
         color: inherit;
44
         color: inherit;

+ 3
- 3
css/modals/invite/_invite_more.scss View File

21
 
21
 
22
     &-button {
22
     &-button {
23
         display: flex;
23
         display: flex;
24
-        justify-content: space-between;
25
-        align-items: center;
26
         margin: auto;
24
         margin: auto;
27
         padding: 8px 16px;
25
         padding: 8px 16px;
28
-        width: 152px;
26
+        width: fit-content;
27
+        width: -moz-fit-content;
29
         height: 24px;
28
         height: 24px;
30
         background: #0376DA;
29
         background: #0376DA;
31
         border-radius: 3px;
30
         border-radius: 3px;
38
         }
37
         }
39
 
38
 
40
         &-text {
39
         &-text {
40
+            margin-left: 8px;
41
             font-size: 15px;
41
             font-size: 15px;
42
             line-height: 24px;
42
             line-height: 24px;
43
         }
43
         }

+ 2
- 2
css/modals/security/_security.scss View File

17
                     color: #6FB1EA;
17
                     color: #6FB1EA;
18
                 }
18
                 }
19
 
19
 
20
-                & > a + a {
21
-                    margin-left: 24px;
20
+                & > :first-child:not(:last-child) {
21
+                    margin-right: 24px;
22
                 }
22
                 }
23
             }
23
             }
24
         }
24
         }

+ 1
- 1
react/features/conference/components/web/InviteMore.js View File

56
                     className = 'invite-more-button'
56
                     className = 'invite-more-button'
57
                     onClick = { onClick }>
57
                     onClick = { onClick }>
58
                     <Icon src = { IconInviteMore } />
58
                     <Icon src = { IconInviteMore } />
59
-                    <div className = 'invite-more-text'>
59
+                    <div className = 'invite-more-button-text'>
60
                         {t('addPeople.inviteMorePrompt')}
60
                         {t('addPeople.inviteMorePrompt')}
61
                     </div>
61
                     </div>
62
                 </div>
62
                 </div>

Loading…
Cancel
Save