Skip to content

Commit

Permalink
chore: minor changes & cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
konstfish committed Dec 26, 2024
1 parent 1f9219b commit f154141
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/CommentList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Comment from './Comment.vue'

<template>
<div class="comment-list">
<span v-if="commentsLoading">Loading...</span>
<span v-if="commentsLoading"></span>

<Comment :comment="user_comment" v-if="user_comment" id="user-comment"/>

Expand Down
6 changes: 4 additions & 2 deletions src/components/CommentSubmission.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import Modal from './Modal.vue'
</script>

<template>
<div class="comment-input-container">
<div v-if="!boardComplete || !pb.authStore.isValid" class="comment-input-blur">
<div class="comment-input-container" v-if="boardComplete">
<div v-if="!pb.authStore.isValid" class="comment-input-blur">
<span v-if="!pb.authStore.isValid">Please sign in to leave a comment</span>
<span v-else-if="!boardComplete">Please complete the board to comment</span>
</div>
Expand Down Expand Up @@ -164,6 +164,8 @@ export default {
textarea{
border-radius: 8px;
padding: 6px;
max-width: calc(100% - 12px);
min-width: calc(100% - 12px);
}
#text{
Expand Down
4 changes: 2 additions & 2 deletions src/views/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import Modal from '../components/Modal.vue'

<span>View the source code on <a href="https://github.com/konstfish/sudoku">GitHub</a></span>

<div class="donate">
<!--<div class="donate">
Your donation helps sustain our website and awards you a Supporter Badge as a thank you.
<a href='https://www.paypal.com/donate/?hosted_button_id=KVSN7JA556CLQ'>
<button><IconHeart class="heart"/> Donate</button>
</a>
</div>
</div>-->

<a @click="privacyModal = !privacyModal">Privacy Policy</a>

Expand Down

0 comments on commit f154141

Please sign in to comment.