-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLocation-theme.scss
More file actions
32 lines (26 loc) · 951 Bytes
/
Location-theme.scss
File metadata and controls
32 lines (26 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@use '../utils';
.str-chat__share-location-dialog {
.str-chat__live-location-activation {
border-radius: var(--str-chat__border-radius-sm);
border: 1px solid var(--str-chat__secondary-overlay-color);;
.str-chat__form__switch-field {
background-color: var(--str-chat__background-color);
}
.str-chat__dropdown__open-button {
border-radius: var(--str-chat__border-radius-xs);
border: 1px solid var(--str-chat__secondary-overlay-color);
background-color: var(--str-chat__tertiary-surface-color);
}
.str-chat__dropdown__items {
box-shadow: 0 0 8px var(--str-chat__box-shadow-color);
border-radius: var(--str-chat__border-radius-xs);
.str-chat__live-location-sharing-duration-option {
@include utils.button-reset;
cursor: pointer;
&:hover {
background-color: var(--str-chat__message-options-hover-background-color);
}
}
}
}
}