|
1
|
.action { |
|
2
|
font-weight: 600; |
|
3
|
|
|
4
|
&:is(button) { |
|
5
|
appearance: none; |
|
6
|
background: none; |
|
7
|
border: none; |
|
8
|
padding: 0; |
|
9
|
cursor: pointer; |
|
10
|
} |
|
11
|
|
|
12
|
&:focus, &:hover, &:active { |
|
13
|
text-decoration: underline; |
|
14
|
} |
|
15
|
|
|
16
|
&.delete { |
|
17
|
color: rgba(232, 75, 59); |
|
18
|
} |
|
19
|
} |
|
20
|
|