Skip to content

Commit 252792a

Browse files
chore: remove redundant font-weight from font-cal elements
Co-Authored-By: [email protected] <[email protected]>
1 parent 9ec9280 commit 252792a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/web/app/(use-page-wrapper)/(main-nav)/ShellMainAppDir.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function ShellMainAppDir(props: LayoutProps) {
2727
{props.heading && (
2828
<h3
2929
className={classNames(
30-
"font-cal text-emphasis max-w-28 sm:max-w-72 md:max-w-80 inline truncate text-lg font-semibold tracking-wide sm:text-xl md:block xl:max-w-full",
30+
"font-cal text-emphasis max-w-28 sm:max-w-72 md:max-w-80 inline truncate text-lg tracking-wide sm:text-xl md:block xl:max-w-full",
3131
props.smallHeading ? "text-base" : "text-xl"
3232
)}>
3333
{props.heading}

apps/web/app/(use-page-wrapper)/apps/routing-forms/[...pages]/RoutingLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function RoutingForm({ form, profile, ...restProps }: Props) {
183183

184184
<form onSubmit={handleOnSubmit}>
185185
<div className="mb-8">
186-
<h1 className="font-cal text-emphasis mb-1 text-xl font-semibold tracking-wide">
186+
<h1 className="font-cal text-emphasis mb-1 text-xl tracking-wide">
187187
{form.name}
188188
</h1>
189189
{form.description ? (

apps/web/app/(use-page-wrapper)/availability/[schedule]/skeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function AvailabilityScheduleSkeleton() {
1919
{/* Title section */}
2020
<header className="flex w-full max-w-full items-center truncate">
2121
<div className="w-full truncate ltr:mr-4 rtl:ml-4 md:block">
22-
<SkeletonText className="font-cal max-w-28 sm:max-w-72 md:max-w-80 hidden h-6 truncate text-xl font-semibold tracking-wide md:block" />
22+
<SkeletonText className="font-cal max-w-28 sm:max-w-72 md:max-w-80 hidden h-6 truncate text-xl tracking-wide md:block" />
2323
{/* Title */}
2424
<SkeletonText className="mt-1 hidden h-4 w-64 text-sm md:block" /> {/* Subtitle */}
2525
</div>

apps/web/app/(use-page-wrapper)/settings/(settings-layout)/organizations/roles/_components/PbacOptInModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export function PbacOptInModal({ open, onOpenChange, revalidateRolesPath }: Pbac
5151
<FingerprintAnimation isHovered={isButtonHovered} />
5252

5353
<div className="flex w-full flex-col items-center gap-1 text-center">
54-
<h2 className="font-cal text-emphasis text-xl font-semibold">{t("pbac_opt_in_title")}</h2>
54+
<h2 className="font-cal text-emphasis text-xl">{t("pbac_opt_in_title")}</h2>
5555
<p className="text-default text-sm">{t("pbac_opt_in_description")}</p>
5656
</div>
5757
</div>

packages/ui/components/layout/WizardLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function WizardLayout({
4646
<header>
4747
{isLocaleReady ? (
4848
<>
49-
<p className="font-cal mb-3 text-[28px] font-medium leading-7">
49+
<p className="font-cal mb-3 text-[28px] leading-7">
5050
{title.replace(` | ${APP_NAME}`, "")}&nbsp;
5151
</p>
5252
<p className="text-subtle font-sans text-sm font-normal">{subtitle}&nbsp;</p>

0 commit comments

Comments
 (0)