mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
fix(web): improve comment thread layout
This commit is contained in:
parent
66275f1b53
commit
d719370dc2
2 changed files with 15 additions and 20 deletions
|
|
@ -32,7 +32,7 @@ export function CommentPanel({
|
|||
|
||||
if (isLoading) {
|
||||
return (
|
||||
<div className="flex min-h-[120px] w-80 items-center justify-center rounded-lg border bg-card p-4">
|
||||
<div className="flex min-h-[120px] w-96 items-center justify-center rounded-lg border bg-card p-4">
|
||||
<div className="flex items-center gap-2 text-sm text-muted-foreground">
|
||||
<div className="size-4 animate-spin rounded-full border-2 border-current border-t-transparent" />
|
||||
Loading comments...
|
||||
|
|
@ -44,7 +44,7 @@ export function CommentPanel({
|
|||
const hasThreads = threads.length > 0;
|
||||
|
||||
return (
|
||||
<div className="flex w-80 flex-col rounded-lg border bg-card">
|
||||
<div className="flex w-96 flex-col rounded-lg border bg-card">
|
||||
{hasThreads ? (
|
||||
<div
|
||||
className="overflow-y-auto"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue