refactor: separated css modules from common style

This commit is contained in:
charlie
2020-12-14 21:13:12 +08:00
parent 2e30872f61
commit 8a440e910a
28 changed files with 933 additions and 1044 deletions

View File

@@ -0,0 +1,21 @@
#journals {
margin-bottom: 70vh;
textarea {
word-break: break-word;
overflow: hidden;
}
.journal-item {
border-top: 1px solid;
border-top-color: var(--ls-border-color, #738694);
padding: 48px 0;
margin: 24px 0 128px 0;
&:first-child {
border-top: none;
padding: 0;
min-height: 500px;
}
}
}