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-editor.less

18 lines
401 B
Plaintext

@import "./mixin.less";
.memo-editor-container {
@apply relative w-full max-h-full flex flex-col justify-start items-start bg-white p-4 rounded-lg border-2 border-gray-200;
&.edit-ing {
border-color: @text-blue;
}
> .tip-text {
@apply text-xs leading-5 text-gray-400;
}
> .memo-editor {
@apply flex flex-col justify-start items-start relative w-full h-auto bg-white;
}
}