Skip to content

Commit

Permalink
Merge branch 'main' into issue-295-文章列表没有数据时不触底更新
Browse files Browse the repository at this point in the history
  • Loading branch information
MarleneJiang authored Feb 20, 2023
2 parents f293401 + 48807a0 commit 6f9e129
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ onUnmounted(() => {
}
.active {
/* color: rgb(0, 127, 255); */
@apply text-jj-link-normal;
}
</style>
9 changes: 5 additions & 4 deletions frontend/pages/article/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,28 +49,29 @@ onMounted(() => {
.view-container {
@apply bg-jj-main;
}
@media screen and (max-width: 1320px) and (min-width: 1140px) {
@media (max-width: 1320px) and (min-width: 1140px) {
.view-container {
width: 1320px;
}
}
.main-area {
border-radius: 4px;
padding-left: 2.67rem;
padding-right: 2.67rem;
border-radius: 4px;
box-sizing: border-box;
position: relative;
width: 820px;
max-width: 100%;
@apply bg-jj-article mb-1.5rem;
}
@media screen and (max-width: 1140px) {
@media (max-width: 1140px) {
.main-area {
width: calc(100% - 26.67rem);
}
}
@media screen and (max-width: 1000px) {
@media (max-width: 1000px) {
.article-area {
margin-bottom: 0;
}
Expand Down

0 comments on commit 6f9e129

Please sign in to comment.