mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
22 lines
588 B
Plaintext
22 lines
588 B
Plaintext
@import "../mixin.less";
|
|
|
|
.dropdown-wrapper {
|
|
@apply relative flex flex-col justify-start items-start select-none;
|
|
|
|
> .trigger-button {
|
|
@apply flex flex-row justify-center items-center border p-1 rounded shadow text-gray-600 cursor-pointer hover:opacity-80;
|
|
|
|
> .icon-img {
|
|
@apply w-4 h-auto;
|
|
}
|
|
}
|
|
|
|
> .action-buttons-container {
|
|
@apply w-28 mt-1 absolute top-full right-0 flex flex-col justify-start items-start bg-white z-1 border p-1 rounded shadow;
|
|
|
|
> button {
|
|
@apply w-full text-left px-2 text-sm leading-7 rounded hover:bg-gray-100;
|
|
}
|
|
}
|
|
}
|