Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/web/src/components/SidebarV2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -879,10 +879,10 @@ const SidebarV2Row = memo(function SidebarV2Row(props: {
) : (
<span className="flex-1" />
)}
<span className="relative ml-auto flex h-5 min-w-8 shrink-0 items-center justify-end pl-1 text-xs">
<span className="ml-auto grid h-5 min-w-8 shrink-0 grid-cols-1 grid-rows-1 items-center justify-items-end pl-1 text-xs">
<span
className={cn(
"tabular-nums text-muted-foreground/65 transition-opacity group-hover/v2-row:opacity-0",
"col-start-1 row-start-1 tabular-nums text-muted-foreground/65 transition-opacity group-hover/v2-row:opacity-0",
snoozeMenuOpen && "opacity-0",
)}
>
Expand Down Expand Up @@ -917,7 +917,7 @@ const SidebarV2Row = memo(function SidebarV2Row(props: {
{props.settlementSupported || showSnoozeButton ? (
<span
className={cn(
"absolute inset-y-0 right-0 flex items-stretch gap-0.5 opacity-0 transition-opacity focus-within:opacity-100 group-hover/v2-row:opacity-100",
"col-start-1 row-start-1 flex items-stretch gap-0.5 self-stretch opacity-0 transition-opacity focus-within:opacity-100 group-hover/v2-row:opacity-100",
snoozeMenuOpen && "opacity-100",
)}
>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ html[data-mobile-composer-route-transition="true"]::view-transition-old(t3-mobil
}

@media (min-width: 48rem) {
@container sidebar-header (min-width: 13.5rem) {
@container sidebar-header (min-width: 12.75rem) {
.sidebar-brand {
display: flex;
}
Expand Down
Loading