mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
23 lines
426 B
Plaintext
23 lines
426 B
Plaintext
@import "./mixin.less";
|
|
|
|
.memo-list-container {
|
|
@apply flex flex-col justify-start items-start w-full max-w-full overflow-y-scroll !pb-36;
|
|
.hide-scroll-bar();
|
|
|
|
> .status-text-container {
|
|
@apply flex flex-col justify-start items-center w-full my-6;
|
|
|
|
&.fetching-tip {
|
|
@apply mt-2 mb-1;
|
|
}
|
|
|
|
> .status-text {
|
|
@apply text-sm text-gray-400 italic;
|
|
}
|
|
}
|
|
|
|
&.completed {
|
|
@apply pb-16;
|
|
}
|
|
}
|