Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit ed2c790

Browse files
authored
Fix dropdown button size for picture-in-picture CallView (#8680)
1 parent 6cdeb64 commit ed2c790

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

res/css/views/voip/CallView/_CallViewButtons.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ limitations under the License.
2424
}
2525

2626
.mx_CallViewButtons {
27+
--CallViewButtons_dropdownButton-size: 16px;
28+
2729
position: absolute;
2830
display: flex;
2931
justify-content: center;
@@ -65,8 +67,8 @@ limitations under the License.
6567
}
6668

6769
&.mx_CallViewButtons_dropdownButton {
68-
width: 16px;
69-
height: 16px;
70+
width: var(--CallViewButtons_dropdownButton-size);
71+
height: var(--CallViewButtons_dropdownButton-size);
7072

7173
position: absolute;
7274
right: 0;

res/css/views/voip/_CallView.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ limitations under the License.
165165
width: 34px;
166166
height: 34px;
167167

168+
&.mx_CallViewButtons_dropdownButton {
169+
width: var(--CallViewButtons_dropdownButton-size);
170+
height: var(--CallViewButtons_dropdownButton-size);
171+
}
172+
168173
&::before {
169174
width: 22px;
170175
height: 22px;

0 commit comments

Comments
 (0)