Skip to content

Commit

Permalink
[F] fix margin
Browse files Browse the repository at this point in the history
  • Loading branch information
LS-KR committed Jun 21, 2024
1 parent 1362d6c commit 51eb73f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/views/ProfileComments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ export default class ProfileComments extends Vue
content: mdParseInline(c.content.replaceAll("\n", "<br />")),
replies: c.replies
? c.replies.map(r => {
return {
...r,
content: mdParseInline(r.content.replaceAll("\n", "<br />")),
}
return {
...r,
content: mdParseInline(r.content.replaceAll("\n", "<br />")),
}
})
:[]
}})
Expand All @@ -97,7 +97,7 @@ export default class ProfileComments extends Vue
const params = {id: this.p.id, content: this.textInput, ...p}
info(params)
Swal.fire({
title: t.nav_comment_submit,
showConfirmButton: false,
Expand Down Expand Up @@ -222,7 +222,7 @@ export default class ProfileComments extends Vue
#add-comment
margin-top: 20px
margin-bottom: 50px
margin-bottom: 125px
textarea
font-family: $font
Expand All @@ -242,7 +242,7 @@ export default class ProfileComments extends Vue
textarea:focus-visible
outline: 1px solid $color-text-light
//outline: none
//outline: none
textarea::placeholder
color: $color-text-light
Expand All @@ -263,7 +263,7 @@ export default class ProfileComments extends Vue
font-size: 10px
color: $color-text-light
margin-right: 5px
[data-theme="dark"]
.comment
.from
Expand All @@ -277,9 +277,9 @@ export default class ProfileComments extends Vue
.replies
.reply-title
color: $color-text-dark-light !important
background: $color-bg-dark-5 !important
#add-comment
textarea
background: rgba(255, 255, 255, 0.05) !important
Expand Down

0 comments on commit 51eb73f

Please sign in to comment.