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

31 lines
803 B
Plaintext

4 years ago
@import "./mixin.less";
.memo-editor-container {
@apply transition-all relative w-full max-h-full flex flex-col justify-start items-start bg-white p-4 rounded-lg border-2 border-gray-200;
&.fullscreen {
@apply fixed w-full h-full top-0 left-0 z-1000 border-none rounded-none sm:p-8;
background-color: #f6f5f4;
> .memo-editor {
@apply p-4 rounded-lg border shadow-lg flex flex-col flex-grow justify-start items-start relative w-full h-full bg-white;
> .common-editor-inputer {
@apply flex-grow w-full !h-full max-h-full;
}
}
}
4 years ago
&.edit-ing {
border-color: @text-blue;
}
> .tip-text {
@apply text-xs leading-5 text-gray-400;
4 years ago
}
> .memo-editor {
@apply flex flex-col justify-start items-start relative w-full h-auto bg-white;
}
4 years ago
}