-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 1.18 KB
/
Copy pathstyle.css
File metadata and controls
54 lines (54 loc) · 1.18 KB
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
46
47
48
49
50
51
52
53
54
.tagInputContainer {
--rti-bg: #fff;
--rti-border: #ccc;
--rti-main: #3182ce;
--rti-radius: 0.375rem;
--rti-s: 0.5rem;
--rti-tag: #edf2f7;
--rti-tag-remove: #e53e3e;
--rti-tag-padding: 0.15rem 0.25rem;
align-items: center;
background: var(--rti-bg);
border: 1px solid var(--rti-border);
border-radius: var(--rti-radius);
display: flex;
flex-wrap: wrap;
gap: var(--rti-s);
line-height: 1.4;
padding: var(--rti-s);
}
.tagInputContainer > span {
align-items: center;
background: var(--rti-tag);
border-radius: var(--rti-radius);
display: inline-flex;
justify-content: center;
padding: var(--rti-tag-padding);
box-sizing: border-box;
transition: all 0.2s ease;
}
.tagInputContainer > span >div{
display: flex;
align-items: center;
background-color: none;
justify-content: center;
padding: 1px;
margin: 0 3px;
width:10px;
height: 10px;
color: red;
}
.tagInputContainer > input {
border: none;
width: 80%;
outline: none;
}
.tagInputContainer > input::placeholder {
color: #808080;
text-align: left;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 150% */
}