File tree 8 files changed +11
-17
lines changed
8 files changed +11
-17
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ export default function ImageUploader({
119
119
< DialogContent >
120
120
< div className = "mb-4 sm:flex sm:items-start" >
121
121
< div className = "mt-3 text-center sm:mt-0 sm:text-left" >
122
- < h3 className = "font-cal text-lg font-bold leading-6 text-gray-900" id = "modal-title" >
122
+ < h3 className = "font-cal text-lg leading-6 text-gray-900" id = "modal-title" >
123
123
{ t ( "upload_target" , { target } ) }
124
124
</ h3 >
125
125
</ div >
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ export default function Shell(props: {
248
248
</ nav >
249
249
</ div >
250
250
< TrialBanner />
251
- < div className = "rounded-sm pb-2 pl-3 pt-2 pr-2 hover:bg-gray-100 lg:mx-2 lg:pl-2" >
251
+ < div className = "rounded-sm pt-2 pb-2 pl-3 pr-2 hover:bg-gray-100 lg:mx-2 lg:pl-2" >
252
252
< span className = "hidden lg:inline" >
253
253
< UserDropdown />
254
254
</ span >
@@ -309,9 +309,7 @@ export default function Shell(props: {
309
309
< div className = "block min-h-[80px] justify-between px-4 sm:flex sm:px-6 md:px-8" >
310
310
{ props . HeadingLeftIcon && < div className = "ltr:mr-4" > { props . HeadingLeftIcon } </ div > }
311
311
< div className = "mb-8 w-full" >
312
- < h1 className = "font-cal mb-1 text-xl font-bold tracking-wide text-gray-900" >
313
- { props . heading }
314
- </ h1 >
312
+ < h1 className = "font-cal mb-1 text-xl text-gray-900" > { props . heading } </ h1 >
315
313
< p className = "text-sm text-neutral-500 ltr:mr-4 rtl:ml-4" > { props . subtitle } </ p >
316
314
</ div >
317
315
< div className = "mb-4 flex-shrink-0" > { props . CTA } </ div >
Original file line number Diff line number Diff line change @@ -52,9 +52,7 @@ export default function ConfirmationDialogContent(props: PropsWithChildren<Confi
52
52
</ div >
53
53
) }
54
54
< div >
55
- < DialogPrimitive . Title className = "font-cal text-xl font-bold text-gray-900" >
56
- { title }
57
- </ DialogPrimitive . Title >
55
+ < DialogPrimitive . Title className = "font-cal text-xl text-gray-900" > { title } </ DialogPrimitive . Title >
58
56
< DialogPrimitive . Description className = "text-sm text-neutral-500" >
59
57
{ children }
60
58
</ DialogPrimitive . Description >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export default function AuthContainer(props: React.PropsWithChildren<Props>) {
21
21
< img className = "mx-auto h-6" src = "/calendso-logo-white-word.svg" alt = "Cal.com Logo" />
22
22
) }
23
23
{ props . heading && (
24
- < h2 className = "font-cal mt-6 text-center text-3xl font-bold text-neutral-900" > { props . heading } </ h2 >
24
+ < h2 className = "font-cal mt-6 text-center text-3xl text-neutral-900" > { props . heading } </ h2 >
25
25
) }
26
26
</ div >
27
27
{ props . loading && (
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import React from "react";
4
4
import { TextProps } from "../Text" ;
5
5
6
6
const Headline : React . FunctionComponent < TextProps > = ( props : TextProps ) => {
7
- const classes = classnames ( "font-cal text-xl font-bold text-gray-900 dark:text-white" , props ?. className ) ;
7
+ const classes = classnames ( "font-cal text-xl text-gray-900 dark:text-white" , props ?. className ) ;
8
8
9
9
return < p className = { classes } > { props ?. text || props . children } </ p > ;
10
10
} ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default function User(props: inferSSRProps<typeof getServerSideProps>) {
49
49
< main className = "mx-auto max-w-3xl px-4 py-24" >
50
50
< div className = "mb-8 text-center" >
51
51
< AvatarSSR user = { user } className = "mx-auto mb-4 h-24 w-24" alt = { nameOrUsername } > </ AvatarSSR >
52
- < h1 className = "font-cal mb-1 text-3xl font-bold text-neutral-900 dark:text-white" >
52
+ < h1 className = "font-cal mb-1 text-3xl text-neutral-900 dark:text-white" >
53
53
{ nameOrUsername }
54
54
{ user . verified && (
55
55
< BadgeCheckIcon className = "mx-1 -mt-1 inline h-6 w-6 text-blue-500 dark:text-white" />
@@ -61,7 +61,7 @@ export default function User(props: inferSSRProps<typeof getServerSideProps>) {
61
61
{ user . away ? (
62
62
< div className = "overflow-hidden rounded-sm border dark:border-gray-900" >
63
63
< div className = "p-8 text-center text-gray-400 dark:text-white" >
64
- < h2 className = "font-cal mb-2 text-3xl font-semibold text-gray-600 dark:text-white" >
64
+ < h2 className = "font-cal mb-2 text-3xl text-gray-600 dark:text-white" >
65
65
😴{ " " + t ( "user_away" ) }
66
66
</ h2 >
67
67
< p className = "mx-auto max-w-md" > { t ( "user_away_description" ) } </ p >
@@ -116,9 +116,7 @@ export default function User(props: inferSSRProps<typeof getServerSideProps>) {
116
116
{ eventTypes . length === 0 && (
117
117
< div className = "overflow-hidden rounded-sm border dark:border-gray-900" >
118
118
< div className = "p-8 text-center text-gray-400 dark:text-white" >
119
- < h2 className = "font-cal mb-2 text-3xl font-semibold text-gray-600 dark:text-white" >
120
- { t ( "uh_oh" ) }
121
- </ h2 >
119
+ < h2 className = "font-cal mb-2 text-3xl text-gray-600 dark:text-white" > { t ( "uh_oh" ) } </ h2 >
122
120
< p className = "mx-auto max-w-md" > { t ( "no_event_types_have_been_setup" ) } </ p >
123
121
</ div >
124
122
</ div >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ function HideBrandingInput(props: { hideBrandingRef: RefObject<HTMLInputElement>
67
67
</ div >
68
68
< div className = "mb-4 sm:flex sm:items-start" >
69
69
< div className = "mt-3 sm:mt-0 sm:text-left" >
70
- < h3 className = "font-cal text-lg font-bold leading-6 text-gray-900" id = "modal-title" >
70
+ < h3 className = "font-cal text-lg leading-6 text-gray-900" id = "modal-title" >
71
71
{ t ( "only_available_on_pro_plan" ) }
72
72
</ h3 >
73
73
</ div >
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export function TeamSettingsPage() {
120
120
) }
121
121
</ div >
122
122
< div className = "mb-3 mt-7 flex items-center justify-between" >
123
- < h3 className = "font-cal text-xl font-bold leading-6 text-gray-900" > { t ( "members" ) } </ h3 >
123
+ < h3 className = "font-cal text-xl leading-6 text-gray-900" > { t ( "members" ) } </ h3 >
124
124
{ isAdmin && (
125
125
< div className = "relative flex items-center" >
126
126
< Button
You can’t perform that action at this time.
0 commit comments