Fix dropdown button size for picture-in-picture CallView (#8680)

pull/28217/head
Suguru Hirahara 2022-05-24 15:49:04 +00:00 committed by GitHub
parent 6cdeb64408
commit ed2c79051e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -24,6 +24,8 @@ limitations under the License.
}
.mx_CallViewButtons {
--CallViewButtons_dropdownButton-size: 16px;
position: absolute;
display: flex;
justify-content: center;
@ -65,8 +67,8 @@ limitations under the License.
}
&.mx_CallViewButtons_dropdownButton {
width: 16px;
height: 16px;
width: var(--CallViewButtons_dropdownButton-size);
height: var(--CallViewButtons_dropdownButton-size);
position: absolute;
right: 0;

View File

@ -165,6 +165,11 @@ limitations under the License.
width: 34px;
height: 34px;
&.mx_CallViewButtons_dropdownButton {
width: var(--CallViewButtons_dropdownButton-size);
height: var(--CallViewButtons_dropdownButton-size);
}
&::before {
width: 22px;
height: 22px;