Skip to content

Commit

Permalink
fix: 🐛 Finy tiny UI inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
CPlusPatch committed Dec 26, 2024
1 parent 3c69330 commit 466c1ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/composer/composer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
placeholder="Put your content warning here" />

<EditorContent v-model:content="state.content" :placeholder="chosenSplash"
class="*:!border-none *:!ring-0 *:!outline-none *:rounded-none p-0 max-h-[50dvh] overflow-y-auto min-h-48 *:!ring-offset-0 *:h-full"
class="*:!border-none *:!ring-0 *:!outline-none *:rounded-none p-0 *:max-h-[50dvh] *:overflow-y-auto *:min-h-48 *:!ring-offset-0 *:h-full"
:disabled="sending" :mode="state.contentType === 'text/html' ? 'rich' : 'plain'" />

<div class="w-full flex flex-row gap-2 overflow-x-auto *:shrink-0 pb-2">
Expand Down
4 changes: 2 additions & 2 deletions pages/[username]/[uuid].vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div v-if="loaded" class="mx-auto max-w-2xl w-full pb-72 *:rounded space-y-4 *:border *:border-border/50">
<div v-if="loaded" class="mx-auto max-w-2xl w-full pb-72 *:rounded space-y-4 *:border">
<Note v-for="note of context?.ancestors" :note="note" />
<Note v-if="note" :note="note" />
<Note v-for="note of context?.descendants" :note="note" />
Expand Down Expand Up @@ -72,4 +72,4 @@ useSeoMeta({
noimageindex: !!note.value?.account.noindex,
})),
});
</script>
</script>

0 comments on commit 466c1ea

Please sign in to comment.