Skip to content

Commit

Permalink
fix: borderを良い感じに
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Jun 16, 2024
1 parent 86cab92 commit 8b96a70
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 23 deletions.
8 changes: 0 additions & 8 deletions frontend/src/components/Post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,6 @@ const vTwemoji = {
.post-link {
text-decoration: none;
color: inherit;
&::after {
content: '';
display: block;
width: 100%;
height: 1px;
background-color: var(--dimmed-border-color);
}
}
:global(.twemoji) {
Expand Down
13 changes: 0 additions & 13 deletions frontend/src/views/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,6 @@ hr {
flex-direction: column;
}
.post-link {
text-decoration: none;
color: inherit;
&::after {
content: '';
display: block;
width: 100%;
height: 1px;
background-color: var(--dimmed-border-color);
}
}
.loader-container {
display: flex;
justify-content: center;
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/views/PostView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ onBeforeRouteUpdate((to) => {
@react="() => loadPost(useRoute().params.id as string)"
/>
</div>
<hr />
<Post
:content="postContent.converted_message"
:originalContent="postContent.original_message"
Expand All @@ -55,7 +54,7 @@ onBeforeRouteUpdate((to) => {
:parent-id="postContent.id"
@submit="() => loadPost(useRoute().params.id as string)"
/>
<!-- TODO: -->
<hr />
<div v-for="child in postContent.children" :key="child.post.id">
<Post
:content="child.post.converted_message"
Expand Down

0 comments on commit 8b96a70

Please sign in to comment.