Skip to content

Commit d02308d

Browse files
chore: fix review changes
1 parent d7ab4bd commit d02308d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

apps/sim/app/(auth)/components/support-footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ export function SupportFooter({ position = 'fixed' }: SupportFooterProps) {
1111

1212
return (
1313
<div
14-
className={`right-0 bottom-0 left-0 z-50 pb-8 text-center font-[340] text-[var(--text-subtle)] text-small leading-relaxed ${position}`}
14+
className={`right-0 bottom-0 left-0 z-50 pb-8 text-center font-[340] text-[var(--landing-text-muted)] text-small leading-relaxed ${position}`}
1515
>
1616
Need help?{' '}
1717
<a
1818
href={`mailto:${brandConfig.supportEmail}`}
19-
className='text-[var(--text-subtle)] underline-offset-4 transition hover:text-[var(--landing-text)] hover:underline'
19+
className='text-[var(--landing-text-muted)] underline-offset-4 transition hover:text-[var(--landing-text)] hover:underline'
2020
>
2121
Contact support
2222
</a>

apps/sim/app/(auth)/login/login-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ export default function LoginPage({
472472
<div className='w-full border-[var(--landing-bg-elevated)] border-t' />
473473
</div>
474474
<div className='relative flex justify-center text-sm'>
475-
<span className='bg-[var(--landing-bg)] px-4 font-[340] text-[var(--text-subtle)]'>
475+
<span className='bg-[var(--landing-bg)] px-4 font-[340] text-[var(--landing-text-muted)]'>
476476
Or continue with
477477
</span>
478478
</div>

apps/sim/app/(auth)/signup/signup-form.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -617,13 +617,13 @@ function SignupFormContent({
617617
</Link>
618618
</div>
619619

620-
<div className='absolute right-0 bottom-0 left-0 px-8 pb-8 text-center font-[340] text-[var(--text-subtle)] text-small leading-relaxed sm:px-8 md:px-[44px]'>
620+
<div className='absolute right-0 bottom-0 left-0 px-8 pb-8 text-center font-[340] text-[var(--landing-text-muted)] text-small leading-relaxed sm:px-8 md:px-[44px]'>
621621
By creating an account, you agree to our{' '}
622622
<Link
623623
href='/terms'
624624
target='_blank'
625625
rel='noopener noreferrer'
626-
className='text-[var(--text-subtle)] underline-offset-4 transition hover:text-[var(--landing-text)] hover:underline'
626+
className='text-[var(--landing-text-muted)] underline-offset-4 transition hover:text-[var(--landing-text)] hover:underline'
627627
>
628628
Terms of Service
629629
</Link>{' '}
@@ -632,7 +632,7 @@ function SignupFormContent({
632632
href='/privacy'
633633
target='_blank'
634634
rel='noopener noreferrer'
635-
className='text-[var(--text-subtle)] underline-offset-4 transition hover:text-[var(--landing-text)] hover:underline'
635+
className='text-[var(--landing-text-muted)] underline-offset-4 transition hover:text-[var(--landing-text)] hover:underline'
636636
>
637637
Privacy Policy
638638
</Link>

apps/sim/app/_styles/globals.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@
3232
--shadow-kbd-sm: 0 2px 0 0 rgba(48, 48, 48, 1);
3333
--shadow-brand-inset: inset 0 1.25px 2.5px 0 #9b77ff;
3434
--shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04);
35-
36-
/* Scrollbar colors */
37-
--scrollbar-thumb-color: #c0c0c0;
38-
--scrollbar-thumb-hover-color: #a8a8a8;
3935
}
4036

4137
.workspace-root {
@@ -270,6 +266,10 @@ html[data-sidebar-collapsed] .sidebar-container .sidebar-collapse-btn {
270266
--terminal-status-warning-bg: #fefce8;
271267
--terminal-status-warning-border: #facc15;
272268
--terminal-status-warning-color: #a16207;
269+
270+
/* Scrollbar colors */
271+
--scrollbar-thumb-color: #c0c0c0;
272+
--scrollbar-thumb-hover-color: #a8a8a8;
273273
}
274274
.dark {
275275
/* Surface */

0 commit comments

Comments
 (0)