mirror of
https://github.com/usememos/memos.git
synced 2024-12-21 10:11:42 +03:00
31 lines
779 B
Plaintext
31 lines
779 B
Plaintext
@import "./mixin.less";
|
|
|
|
.memo-content-text {
|
|
@apply w-full whitespace-pre-wrap break-words text-base leading-7;
|
|
|
|
> p {
|
|
@apply inline-block w-full h-auto mb-1 last:mb-0 text-base leading-7 whitespace-pre-wrap break-words;
|
|
}
|
|
|
|
.tag-span {
|
|
@apply inline-block w-auto font-mono text-blue-600;
|
|
}
|
|
|
|
.memo-link-text {
|
|
@apply inline-block text-blue-600 cursor-pointer font-bold border-none no-underline hover:opacity-80;
|
|
}
|
|
|
|
.link {
|
|
@apply inline-block text-blue-600 cursor-pointer underline break-all hover:opacity-80;
|
|
}
|
|
|
|
.counter-block,
|
|
.todo-block {
|
|
@apply inline-block text-center w-6 font-mono select-none cursor-pointer hover:shadow-inner;
|
|
}
|
|
|
|
pre {
|
|
@apply w-full mt-1 py-2 px-3 rounded text-sm bg-gray-100 whitespace-pre-wrap;
|
|
}
|
|
}
|