mirror of https://github.com/usememos/memos.git
30 lines
972 B
Plaintext
30 lines
972 B
Plaintext
.dialog-wrapper {
|
|
@apply fixed top-0 left-0 flex flex-col justify-start items-center w-full h-full pt-16 pb-8 px-4 z-1000 overflow-x-hidden overflow-y-scroll bg-transparent transition-all hide-scrollbar bg-black bg-opacity-60;
|
|
|
|
> .dialog-container {
|
|
@apply max-w-full shadow flex flex-col justify-start items-start bg-white dark:bg-zinc-800 dark:text-gray-300 p-4 rounded-lg;
|
|
|
|
> .dialog-header-container {
|
|
@apply flex flex-row justify-between items-center w-full mb-4;
|
|
|
|
> .title-text {
|
|
> .icon-text {
|
|
@apply mr-2 text-base dark:text-gray-300;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
@apply flex flex-col justify-center items-center w-6 h-6 rounded hover:bg-gray-100 dark:hover:bg-zinc-900 hover:shadow;
|
|
}
|
|
}
|
|
|
|
> .dialog-content-container {
|
|
@apply flex flex-col justify-start items-start w-full;
|
|
}
|
|
|
|
> .dialog-footer-container {
|
|
@apply flex flex-row justify-end items-center w-full mt-4;
|
|
}
|
|
}
|
|
}
|