Add a dropdown to choose between video calls and radio calls

This commit is contained in:
Robin Townsend 2022-05-26 13:52:06 -04:00
commit cbfd03f9c6
10 changed files with 132 additions and 58 deletions

View file

@ -21,7 +21,8 @@ limitations under the License.
.iconCopyButton,
.secondary,
.secondaryHangup,
.copyButton {
.copyButton,
.dropdownButton {
position: relative;
display: flex;
justify-content: center;
@ -184,6 +185,25 @@ limitations under the License.
stroke: #0dbd8b;
}
.dropdownButton {
color: var(--textColor1);
padding: 2px 8px;
border-radius: 8px;
}
.dropdownButton:hover,
.dropdownButton.on {
background-color: var(--bgColor4);
}
.dropdownButton svg {
margin-left: 8px;
}
.dropdownButton svg * {
fill: var(--textColor1);
}
.lg {
height: 40px;
}