2021-01-28 12:58:35 +01:00
|
|
|
@import "../../css/variables.module";
|
2020-04-10 18:09:29 -04:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.excalidraw {
|
2022-11-01 17:29:58 +01:00
|
|
|
.RoomDialog__button {
|
|
|
|
border: 1px solid var(--default-border-color) !important;
|
|
|
|
}
|
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.RoomDialog-linkContainer {
|
|
|
|
display: flex;
|
|
|
|
margin: 1.5em 0;
|
|
|
|
}
|
2020-03-11 19:42:18 +01:00
|
|
|
|
2021-11-17 23:53:43 +05:30
|
|
|
input.RoomDialog-link {
|
2021-02-16 20:22:18 +02:00
|
|
|
color: var(--text-primary-color);
|
2020-09-26 02:48:45 +05:30
|
|
|
min-width: 0;
|
|
|
|
flex: 1 1 auto;
|
2020-11-25 18:21:33 -05:00
|
|
|
margin-inline-start: 1em;
|
2020-09-26 02:48:45 +05:30
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
border-radius: var(--space-factor);
|
|
|
|
background-color: var(--button-gray-1);
|
|
|
|
}
|
2020-03-11 19:42:18 +01:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.RoomDialog-emoji {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
2020-08-13 16:29:33 +02:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.RoomDialog-usernameContainer {
|
|
|
|
display: flex;
|
|
|
|
margin: 1.5em 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-04-08 19:54:50 +02:00
|
|
|
@include isMobile {
|
2021-02-08 15:43:51 -05:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 19:54:50 +02:00
|
|
|
@include isMobile {
|
2021-02-08 15:43:51 -05:00
|
|
|
.RoomDialog-usernameLabel {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-09-26 02:48:45 +05:30
|
|
|
}
|
2020-04-07 14:02:42 +01:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.RoomDialog-username {
|
2021-02-16 20:22:18 +02:00
|
|
|
background-color: var(--input-bg-color);
|
2020-09-26 02:48:45 +05:30
|
|
|
border-color: var(--input-border-color);
|
|
|
|
appearance: none;
|
|
|
|
min-width: 0;
|
|
|
|
flex: 1 1 auto;
|
2020-11-25 18:21:33 -05:00
|
|
|
margin-inline-start: 1em;
|
2021-04-08 19:54:50 +02:00
|
|
|
@include isMobile {
|
2021-02-08 15:43:51 -05:00
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-inline-start: 0;
|
|
|
|
}
|
2020-09-26 02:48:45 +05:30
|
|
|
font-size: 1em;
|
|
|
|
}
|
2020-03-11 19:42:18 +01:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.RoomDialog-sessionStartButtonContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-03-11 19:42:18 +01:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.Modal .RoomDialog-stopSession {
|
2021-02-16 20:22:18 +02:00
|
|
|
background-color: var(--button-destructive-bg-color);
|
2020-08-13 04:35:31 -07:00
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.ToolIcon__label,
|
|
|
|
.ToolIcon__icon svg {
|
|
|
|
color: var(--button-destructive-color);
|
|
|
|
}
|
2020-08-13 04:35:31 -07:00
|
|
|
}
|
2020-03-11 19:42:18 +01:00
|
|
|
}
|