File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ navigating through **subcollections** and accessing custom views (such as custom
89
89
forms or blog previews). This functionality can also be accessed
90
90
programmatically using the ` useSideEntityController ` hook.
91
91
92
- FireCMS includes ** over 15 built-in fields** with numerous customization and
92
+ FireCMS includes ** over 20 built-in fields** with numerous customization and
93
93
validation options. The components have been carefully designed for an
94
94
outstanding user experience, including advanced features like ** references** to
95
95
other collections, ** markdown** , and ** array reordering** .
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export function DialogContent({
17
17
</ div > ;
18
18
19
19
return < div
20
- className = { cls ( "py -6 px -6 h-full flex-grow" , className ) } >
20
+ className = { cls ( "my -6 mx -6 h-full flex-grow" , className ) } >
21
21
{ children }
22
22
</ div > ;
23
23
}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import React from "react";
2
2
import * as DialogPrimitive from "@radix-ui/react-dialog" ;
3
3
import * as VisuallyHidden from "@radix-ui/react-visually-hidden" ;
4
4
import { Typography , TypographyProps , TypographyVariant } from "./Typography" ;
5
+ import { cls } from "../util" ;
5
6
6
7
export type DialogContentProps = TypographyProps & {
7
8
children : React . ReactNode ,
@@ -14,13 +15,13 @@ export function DialogTitle({
14
15
children,
15
16
hidden,
16
17
className,
17
- variant = "h4 " ,
18
+ variant = "subtitle2 " ,
18
19
...props
19
20
} : DialogContentProps ) {
20
21
21
22
const title = < DialogPrimitive . Title asChild >
22
23
< Typography variant = { variant }
23
- className = { className }
24
+ className = { cls ( "mt-8 mb-6 mx-6" , className ) }
24
25
{ ...props } >
25
26
{ children }
26
27
</ Typography >
You can’t perform that action at this time.
0 commit comments