Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
71afa3a
fix(sidebar): show icon-sized skeletons in collapsed settings sidebar
waleedlatif1 Mar 15, 2026
af872df
fix(sidebar): hide expanded skeletons during pre-hydration in collaps…
waleedlatif1 Mar 15, 2026
a58de5a
fix(sidebar): align collapsed settings skeletons with actual icon pos…
waleedlatif1 Mar 15, 2026
03739d0
fix(sidebar): match collapsed skeleton section grouping with loaded l…
waleedlatif1 Mar 15, 2026
c191f15
fix(sidebar): hoist skeleton section counts to module constant
waleedlatif1 Mar 15, 2026
0725c98
improvement(ui): align all public pages with dark landing theme and i…
waleedlatif1 Mar 15, 2026
4ede522
fix(ui): address PR review comments - restore StatusPageLayout wrappe…
waleedlatif1 Mar 15, 2026
84b8604
fix(ui): add missing dark class to 404 page, add relative positioning…
waleedlatif1 Mar 15, 2026
a814db7
fix(ui): fallback to white button when whitelabeled without primary c…
waleedlatif1 Mar 15, 2026
7a6d689
improvement(seo): add x-default hreflang, speakable schema to landing…
waleedlatif1 Mar 15, 2026
fe92bf4
fix(ui): fix OTP/input light-mode styles and add missing header class…
waleedlatif1 Mar 15, 2026
b487eee
undo hardcoded ff config
waleedlatif1 Mar 15, 2026
8255763
update old components/ui usage to emcn
waleedlatif1 Mar 15, 2026
d904f81
fix(ui): add SupportFooter to InviteLayout, remove duplicates from un…
waleedlatif1 Mar 15, 2026
3cb33e5
fix(ui): fix invite layout flex centering, use BrandedButton on 404 page
waleedlatif1 Mar 16, 2026
f337b66
fix(ui): fix OTP group styling, props spread order in BrandedButton, …
waleedlatif1 Mar 16, 2026
88ac9d3
fix: enterprise hydration error
emir-karabeg Mar 16, 2026
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
Prev Previous commit
Next Next commit
fix(ui): fix OTP group styling, props spread order in BrandedButton, …
…invite header shrink-0
  • Loading branch information
waleedlatif1 committed Mar 16, 2026
commit f337b66ea371ce43661057d37eb342bbbcad0c89
2 changes: 1 addition & 1 deletion apps/sim/app/(auth)/components/branded-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export const BrandedButton = forwardRef<HTMLButtonElement, BrandedButtonProps>(
return (
<button
ref={ref}
{...props}
disabled={disabled || loading}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
Expand All @@ -73,7 +74,6 @@ export const BrandedButton = forwardRef<HTMLButtonElement, BrandedButtonProps>(
}
: undefined
}
Comment thread
waleedlatif1 marked this conversation as resolved.
Comment thread
waleedlatif1 marked this conversation as resolved.
{...props}
>
{loading ? (
<span className='flex items-center gap-2'>
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/app/chat/components/auth/email/email-auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export default function EmailAuth({ identifier, onAuthSuccess }: EmailAuthProps)
disabled={isVerifyingOtp}
className={cn('gap-2', authError && 'otp-error')}
>
<InputOTPGroup className='[&>div]:!rounded-[10px] gap-2'>
<InputOTPGroup>
{[0, 1, 2, 3, 4, 5].map((index) => (
<InputOTPSlot
key={index}
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/app/invite/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface InviteLayoutProps {
export default function InviteLayout({ children }: InviteLayoutProps) {
return (
<div className='relative flex min-h-screen flex-col bg-[#1C1C1C] font-[430] font-season text-[#ECECEC]'>
<header>
<header className='shrink-0'>
<Navbar logoOnly />
</header>
<main className='flex flex-1 flex-col items-center justify-center px-4'>
Expand Down
Loading