mirror of https://github.com/usememos/memos.git
23 lines
412 B
Plaintext
23 lines
412 B
Plaintext
@import "./mixin.less";
|
|
|
|
.memo-list-container {
|
|
@apply flex flex-col justify-start items-start w-full max-w-full overflow-y-scroll;
|
|
.hide-scroll-bar();
|
|
|
|
> .status-text-container {
|
|
@apply flex flex-col justify-start items-center w-full my-6;
|
|
|
|
&.completed {
|
|
@apply mb-16;
|
|
}
|
|
|
|
> .status-text {
|
|
@apply text-sm text-gray-400 italic;
|
|
}
|
|
}
|
|
|
|
&.completed {
|
|
@apply pb-16;
|
|
}
|
|
}
|