mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
* style(general) Replaced font-size fixed units with rem * style(general) Replaced font-size fixed units with rem in the tokens * style(general) Replaced line-height fixed units with rem
44 lines
822 B
SCSS
44 lines
822 B
SCSS
/**
|
|
* Styles errors and links in the AddPeopleDialog.
|
|
*/
|
|
.modal-dialog-form {
|
|
.add-people-form-wrap {
|
|
margin-top: 8px;
|
|
|
|
.error {
|
|
padding-left: 5px;
|
|
|
|
a {
|
|
padding-left: 5px;
|
|
}
|
|
}
|
|
|
|
.add-telephone-icon {
|
|
display: flex;
|
|
height: 28px;
|
|
transform: scaleX(-1);
|
|
width: 28px;
|
|
|
|
i {
|
|
line-height: 1.75rem;
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
.footer-text-wrap {
|
|
display: flex;
|
|
}
|
|
|
|
.footer-telephone-icon {
|
|
display: flex;
|
|
transform: scaleX(-1);
|
|
padding-left: 10px;
|
|
|
|
i {
|
|
line-height: 1.25rem;
|
|
margin: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|