fix: align top bars to uniform h-14 height
This commit is contained in:
@@ -2550,8 +2550,8 @@ export default function Home() {
|
|||||||
|
|
||||||
{/* Search Bar + Inline Advanced Filters */}
|
{/* Search Bar + Inline Advanced Filters */}
|
||||||
<div className="border-b border-border bg-background">
|
<div className="border-b border-border bg-background">
|
||||||
<div className="px-3 py-3">
|
<div className="px-3 h-14 flex items-center">
|
||||||
<div className="flex items-center gap-1.5">
|
<div className="flex items-center gap-1.5 w-full">
|
||||||
{/* Select / Select All toggle */}
|
{/* Select / Select All toggle */}
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|||||||
@@ -4226,8 +4226,8 @@ export function EmailViewer({
|
|||||||
"bg-background border-b border-border",
|
"bg-background border-b border-border",
|
||||||
"max-lg:sticky max-lg:top-0 max-lg:z-10"
|
"max-lg:sticky max-lg:top-0 max-lg:z-10"
|
||||||
)}>
|
)}>
|
||||||
<div className="px-2 sm:px-4 lg:px-6 py-1 sm:py-2">
|
<div className="px-2 sm:px-4 lg:px-6 h-14 flex items-center">
|
||||||
<div ref={toolbarRef} className="flex items-center justify-between gap-0.5 sm:gap-2">
|
<div ref={toolbarRef} className="flex items-center justify-between gap-0.5 sm:gap-2 w-full">
|
||||||
{renderToolbarItems(true)}
|
{renderToolbarItems(true)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -942,7 +942,7 @@ export function Sidebar({
|
|||||||
{/* Header - hidden in the Pro shell, which owns its own chrome and
|
{/* Header - hidden in the Pro shell, which owns its own chrome and
|
||||||
would otherwise render an empty strip (no collapse, no switcher). */}
|
would otherwise render an empty strip (no collapse, no switcher). */}
|
||||||
{!isEmbedded && (
|
{!isEmbedded && (
|
||||||
<div className={cn("flex items-center border-b border-border", isCollapsed ? "justify-center px-2 py-2" : "gap-1 px-2 py-2")}>
|
<div className={cn("flex items-center border-b border-border h-14", isCollapsed ? "justify-center px-2" : "gap-1 px-2")}>
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
size="icon"
|
size="icon"
|
||||||
|
|||||||
Reference in New Issue
Block a user