This commit is contained in:
Robert Long 2021-10-07 17:25:40 -07:00
commit 2e7dfe85e6
3 changed files with 125 additions and 12 deletions

View file

@ -15,7 +15,8 @@ limitations under the License.
*/
.roomButton,
.headerButton {
.headerButton,
.dropdownButton {
display: flex;
justify-content: center;
align-items: center;
@ -29,7 +30,7 @@ limitations under the License.
width: 50px;
height: 50px;
border-radius: 50px;
background-color: rgba(111, 120, 130, 0.3);
background-color: #394049;
}
.roomButton:hover {
@ -73,3 +74,34 @@ limitations under the License.
.screenshareButton.on svg * {
fill: #0dbd8b;
}
.dropdownButtonContainer {
position: relative;
}
.dropdownButton {
width: 15px;
height: 15px;
border-radius: 15px;
background-color: #394049;
position: absolute;
bottom: 0;
right: 0;
}
.dropdownButton:hover {
background-color: #8d97a5;
}
.dropdownButton:hover svg * {
fill: #8d97a5;
}
.dropdownContainer {
position: absolute;
left: 50%;
transform: translate(-50%, -100%);
top: 0;
background-color: #394049;
border-radius: 8px;
}