-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskListItem.module.css
More file actions
63 lines (55 loc) · 885 Bytes
/
TaskListItem.module.css
File metadata and controls
63 lines (55 loc) · 885 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
51
52
53
54
55
56
57
58
59
60
61
62
63
.taskListItem {
display: flex;
flex-direction: row;
align-items: center;
margin: 10px;
gap: 10px;
}
.editButton {
border: none;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
border-radius: 5px;
}
.editIcon {
height: 100%;
width: 100%;
color: gray;
}
.editIcon:hover {
color: #3e90a1;
}
.deleteButton {
border: none;
justify-content: center;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
border-radius: 5px;
}
.deleteIcon {
height: 100%;
width: 100%;
color: gray;
}
.deleteIcon:hover {
color: #3e90a1;
}
.buttonLayout {
display: flex;
flex-direction: row;
gap: 10px;
width: 20%;
justify-content: space-between;
}
.taskName {
width: 80%;
overflow-x: hidden;
overflow-y: hidden;
font-size: 0.9rem;
font-weight: light;
font-family: "Inter", sans-serif;
}