Skip to content

Commit

Permalink
Merge pull request #294 from MarleneJiang/issue-284-细节修改
Browse files Browse the repository at this point in the history
fix: delete "screen and"
  • Loading branch information
MarleneJiang authored Feb 20, 2023
2 parents 7031821 + 570c7ee commit 48807a0
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

1 comment on commit 48807a0

@vercel
Copy link

@vercel vercel bot commented on 48807a0 Feb 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.