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.
24 lines
589 B
Plaintext
24 lines
589 B
Plaintext
@import "./mixin.less";
|
|
|
|
.daily-memo-wrapper {
|
|
@apply flex flex-row justify-start items-start relative w-full flex-nowrap pb-6;
|
|
|
|
&:last-child {
|
|
> .split-line {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
|
|
> .split-line {
|
|
@apply h-full px-px bg-gray-50 absolute top-1 left-6 z-0 -ml-px;
|
|
}
|
|
|
|
> .time-wrapper {
|
|
@apply mt-px mr-4 w-12 h-7 shrink-0 text-xs leading-6 text-center font-mono rounded-lg bg-gray-100 border-2 border-white text-gray-600 z-10;
|
|
}
|
|
|
|
> .memo-content-container {
|
|
@apply flex flex-col justify-start items-start w-full overflow-x-hidden p-0 text-base;
|
|
}
|
|
}
|