-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathTextInputFieldset.scss
More file actions
45 lines (37 loc) · 920 Bytes
/
TextInputFieldset.scss
File metadata and controls
45 lines (37 loc) · 920 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
33
34
35
36
37
38
39
40
41
42
43
44
45
.str-chat__form__input-fieldset {
margin: 0;
padding: 0;
border: none;
.str-chat__form__input-fieldset__label {
font-size: var(--typography-font-size-sm);
font-weight: var(--typography-font-weight-medium);
line-height: var(--typography-line-height-tight);
color: var(--text-primary);
}
.str-chat__form__input-fieldset__values {
display: flex;
flex-direction: column;
.str-chat__form__input-field--draggable {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.5rem;
input {
pointer-events: auto;
}
.str-chat__drag-handle {
height: 1rem;
width: 1rem;
}
}
.str-chat__form__input-field {
width: 100%;
.str-chat__form__input-field__value {
width: 100%;
.str-chat__form__input-field__error {
width: 100%;
}
}
}
}
}