mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
614 B
Plaintext
40 lines
614 B
Plaintext
@import "./mixin.less";
|
|
|
|
.memolist-wrapper {
|
|
.flex(column, flex-start, flex-start);
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
.hide-scroll-bar();
|
|
|
|
> .status-text-container {
|
|
.flex(column, flex-start, center);
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
|
|
&.completed {
|
|
margin-bottom: 64px;
|
|
}
|
|
|
|
&.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
> .status-text {
|
|
font-size: 13px;
|
|
color: gray;
|
|
}
|
|
}
|
|
|
|
&.completed {
|
|
padding-bottom: 80px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 875px) {
|
|
.memolist-wrapper {
|
|
padding: 0 12px;
|
|
}
|
|
}
|