mirror of
https://github.com/usememos/memos.git
synced 2025-10-23 04:36:25 +08:00
23 lines
647 B
Text
23 lines
647 B
Text
@import "./mixin.less";
|
|
|
|
.page-wrapper.home {
|
|
@apply relative top-0 w-full h-screen overflow-y-auto overflow-x-hidden;
|
|
background-color: #f6f5f4;
|
|
|
|
> .page-container {
|
|
@apply relative w-full min-h-screen mx-auto flex flex-row justify-start sm:justify-center items-start;
|
|
|
|
> .sidebar-wrapper {
|
|
@apply flex-shrink-0;
|
|
}
|
|
|
|
> .memos-wrapper {
|
|
@apply relative flex-grow max-w-2xl min-h-full flex flex-col justify-start items-start px-4 sm:pr-6;
|
|
|
|
> .memos-editor-wrapper {
|
|
@apply sticky top-0 w-full h-full flex flex-col justify-start items-start z-10;
|
|
background-color: #f6f5f4;
|
|
}
|
|
}
|
|
}
|
|
}
|