mirror of
https://github.com/usememos/memos.git
synced 2024-12-20 17:51:50 +03:00
26 lines
494 B
Plaintext
26 lines
494 B
Plaintext
.resource-card {
|
|
@apply w-full p-2 relative flex flex-col justify-start hover:shadow hover:bg-slate-200 dark:hover:bg-slate-600 rounded-md;
|
|
|
|
&:hover {
|
|
.resource-checkbox {
|
|
@apply flex hover:text-black;
|
|
}
|
|
.more-action-btn {
|
|
@apply flex;
|
|
}
|
|
}
|
|
|
|
.resource-checkbox {
|
|
@apply hidden w-4 h-auto cursor-pointer hover:flex;
|
|
}
|
|
|
|
.more-action-btn {
|
|
@apply hidden;
|
|
&:hover {
|
|
& + .more-action-btns-wrapper {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
}
|