-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathremove-button.css
More file actions
50 lines (44 loc) · 858 Bytes
/
remove-button.css
File metadata and controls
50 lines (44 loc) · 858 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
46
47
48
49
50
:host {
display: inline-block;
}
.remove-btn {
flex-shrink: 0;
width: 28px;
height: 28px;
padding: 0;
margin: 0;
background: transparent;
color: var(--s2-gray-700, #374151);
border: 1px solid transparent;
border-radius: 6px;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background 0.15s ease, color 0.15s ease;
&:hover {
background: var(--s2-gray-200, #e5e7eb);
}
&.confirm-state {
background: var(--s2-red-600, #dc2626);
color: white;
border: none;
&:hover {
background: var(--s2-red-700, #b91c1c);
color: white;
}
}
}
.trash-icon,
.check-icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}
.check-icon {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 600;
}