Add hang up button

This commit is contained in:
2020-04-12 18:52:56 +02:00
parent dd40c0fae3
commit 9477bba0be
2 changed files with 87 additions and 0 deletions

View File

@ -73,4 +73,37 @@
flex: 1;
max-height: 100%;
max-width: 100%;
}
.call-window .window-bottom {
height: 40px;
display: flex;
justify-content: space-around;
align-items: center;
}
.call-window .window-bottom div {
color: #fff6;
flex: 1;
text-align: center;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.call-window .window-bottom div.selected {
color: white;
}
.call-window .window-bottom div:hover {
background-color: #ffffff4d;
}
.call-window .window-bottom div:active {
background-color: #fff3;
}
.call-window .window-bottom div.hang-up-button {
color: #dd4b39;
}