xsmall home header breakpoint

This commit is contained in:
adilallo
2025-08-06 08:53:15 -06:00
parent 37caada856
commit 73615e31a7
9 changed files with 222 additions and 7 deletions
+15
View File
@@ -0,0 +1,15 @@
export default function HeaderTab({ children, className = "", ...props }) {
return (
<div
className={`relative bg-[var(--color-surface-default-brand-primary)] rounded-t-[16px] pl-[var(--spacing-measures-spacing-012)] h-[40px] ${className}`}
{...props}
>
{children}
<img
src="/assets/Union.svg"
alt="Union"
className="absolute bottom-[0px] -right-[55px] w-[61px] h-[24px]"
/>
</div>
);
}