2022-04-22 18:05:48 -07:00
|
|
|
.pttButton {
|
2022-07-05 15:49:48 -04:00
|
|
|
width: 100vw;
|
2022-07-05 13:45:40 -04:00
|
|
|
aspect-ratio: 1;
|
2022-07-05 15:49:48 -04:00
|
|
|
max-height: min(232px, calc(100vh - 16px));
|
|
|
|
|
max-width: min(232px, calc(100vw - 16px));
|
2022-04-22 18:05:48 -07:00
|
|
|
border-radius: 116px;
|
2022-06-01 11:48:17 -04:00
|
|
|
color: var(--primary-content);
|
|
|
|
|
border: 6px solid var(--accent);
|
2022-05-04 11:24:25 +01:00
|
|
|
background-color: #21262c;
|
2022-04-28 17:44:50 -07:00
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
2022-07-05 13:45:40 -04:00
|
|
|
margin: 4px;
|
2022-05-31 18:08:42 -04:00
|
|
|
cursor: pointer;
|
2022-04-28 17:44:50 -07:00
|
|
|
}
|
|
|
|
|
|
2022-07-05 13:45:40 -04:00
|
|
|
.micIcon {
|
|
|
|
|
max-height: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
/* Remove explicit size to allow avatar to scale with the button */
|
2022-07-06 13:44:17 +01:00
|
|
|
width: 100% !important;
|
|
|
|
|
height: 100% !important;
|
2022-07-05 13:45:40 -04:00
|
|
|
}
|
|
|
|
|
|
2022-04-28 17:44:50 -07:00
|
|
|
.talking {
|
2022-06-01 11:48:17 -04:00
|
|
|
background-color: var(--accent);
|
2022-05-31 18:08:42 -04:00
|
|
|
cursor: unset;
|
2022-04-28 17:44:50 -07:00
|
|
|
}
|
|
|
|
|
|
2022-06-14 12:00:26 -04:00
|
|
|
.networkWaiting {
|
|
|
|
|
background-color: var(--tertiary-content);
|
|
|
|
|
border-color: var(--tertiary-content);
|
|
|
|
|
cursor: unset;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-28 17:44:50 -07:00
|
|
|
.error {
|
2022-06-01 11:48:17 -04:00
|
|
|
background-color: var(--alert);
|
|
|
|
|
border-color: var(--alert);
|
2022-05-04 11:24:25 +01:00
|
|
|
}
|