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.
memos/web/src/less/memo-content.less

35 lines
832 B
Plaintext

4 years ago
@import "./mixin.less";
.memo-content-text {
@apply w-full whitespace-pre-wrap break-words text-base leading-7;
4 years ago
> p {
@apply inline-block w-full h-auto mb-1 last:mb-0 text-base leading-7 whitespace-pre-wrap break-words;
4 years ago
}
.tag-span {
@apply inline-block w-auto font-mono text-blue-600;
4 years ago
}
.memo-link-text {
@apply inline-block text-blue-600 cursor-pointer font-bold border-none no-underline hover:opacity-80;
4 years ago
}
.link {
@apply inline-block text-blue-600 cursor-pointer underline break-all hover:opacity-80;
}
4 years ago
.counter-block,
.todo-block {
@apply inline-block text-center w-7 font-mono select-none;
}
.todo-block {
@apply rounded select-none cursor-pointer hover:shadow-inner;
4 years ago
}
pre {
@apply w-full mt-1 py-2 px-3 rounded text-sm bg-gray-100 whitespace-pre-wrap;
4 years ago
}
}