14 lines
268 B
CSS
14 lines
268 B
CSS
@reference "../../../styles/globals.css";
|
|
|
|
.actionItem {
|
|
@apply h-9 py-2 px-3 mx-1 flex items-center gap-2 rounded-lg cursor-pointer;
|
|
}
|
|
|
|
.actionName {
|
|
@apply text-text-secondary text-sm;
|
|
}
|
|
|
|
.deleteActionItem:hover .deleteActionItemChild {
|
|
@apply text-red-500;
|
|
}
|