67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
// pages/main/other/memo/index.less
|
|
.memo {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
|
|
.content {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
.status-card {
|
|
padding: 2rem 1.5rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.empty-hint {
|
|
padding: 1.5rem 1rem 0 1rem;
|
|
}
|
|
|
|
.container {
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
position: absolute;
|
|
|
|
.editor {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: .0625rem solid var(--theme-border-light);
|
|
padding: 1rem 1rem 2rem 1rem;
|
|
overflow: auto;
|
|
font-size: 1rem;
|
|
background: var(--theme-bg-primary);
|
|
box-sizing: border-box;
|
|
line-height: 1.5;
|
|
}
|
|
}
|
|
|
|
.toolbar {
|
|
left: 0;
|
|
width: 100%;
|
|
right: 100%;
|
|
height: 3.125rem;
|
|
bottom: 0;
|
|
border: .0625rem solid var(--theme-border-light);
|
|
padding: 0 1rem;
|
|
display: flex;
|
|
position: fixed;
|
|
background: var(--theme-bg-primary);
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
border-left: none;
|
|
border-right: none;
|
|
justify-content: space-between;
|
|
|
|
.icon {
|
|
|
|
&.active {
|
|
color: var(--theme-wx);
|
|
}
|
|
}
|
|
}
|
|
}
|