浏览代码

fix(SecurityDialog): fix button overflow

j8
Mihai Uscat 5 年前
父节点
当前提交
663a65ad81

+ 1
- 0
css/modals/invite/_info.scss 查看文件

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

+ 3
- 3
css/modals/invite/_invite_more.scss 查看文件

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

+ 2
- 2
css/modals/security/_security.scss 查看文件

@@ -17,8 +17,8 @@
17 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 查看文件

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

正在加载...
取消
保存