@@ -31,7 +31,7 @@ const { content, plainContent, sensitive, contentWarning } = defineProps<{
contentWarning?: string;
}>();
-const blurred = ref(sensitive || !!contentWarning);
+const hidden = ref(sensitive || !!contentWarning);
const characterCount = plainContent?.length;
diff --git a/app/components/notes/note.vue b/app/components/notes/note.vue
index f907c3c..9c07cc1 100644
--- a/app/components/notes/note.vue
+++ b/app/components/notes/note.vue
@@ -16,13 +16,13 @@
:visibility="noteToUse.visibility"
:created-at="new Date(noteToUse.created_at)"
:small-layout="smallLayout"
- class="z-[1]"
+ class="z-1"
/>
@@ -30,7 +30,7 @@
v-if="bottomAvatarBar"
:class="
cn(
- 'shrink-0 bg-border w-0.5 absolute bottom-0 h-[calc(100%-1.5rem)] left-[3rem]'
+ 'shrink-0 bg-border w-0.5 absolute bottom-0 h-[calc(100%-1.5rem)] left-12'
)
"
>
@@ -38,7 +38,7 @@