diff --git a/src/components/buttons/IconPatch.tsx b/src/components/buttons/IconPatch.tsx index 67f18106..1a80061c 100644 --- a/src/components/buttons/IconPatch.tsx +++ b/src/components/buttons/IconPatch.tsx @@ -14,7 +14,7 @@ export function IconPatch(props: IconPatchProps) {
diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx index 3e40ff6d..dfc8891f 100644 --- a/src/components/layout/Navigation.tsx +++ b/src/components/layout/Navigation.tsx @@ -11,16 +11,16 @@ export interface NavigationProps { export function Navigation(props: NavigationProps) { return ( -
-
-
+
+
+
{props.children}
-
+
+
{props.children}
) diff --git a/src/components/media/VideoPlayer.tsx b/src/components/media/VideoPlayer.tsx index 28a7ff6b..c625ea1c 100644 --- a/src/components/media/VideoPlayer.tsx +++ b/src/components/media/VideoPlayer.tsx @@ -14,7 +14,7 @@ export interface VideoPlayerProps { export function SkeletonVideoPlayer(props: { error?: boolean }) { return ( -
+
{props.error ? (
diff --git a/src/components/text/ArrowLink.tsx b/src/components/text/ArrowLink.tsx index 6e4ebe92..67c645fb 100644 --- a/src/components/text/ArrowLink.tsx +++ b/src/components/text/ArrowLink.tsx @@ -26,7 +26,7 @@ export function ArrowLink(props: ArrowLinkProps) { const isExternal = !!(props as IArrowLinkPropsExternal).url; const isInternal = !!(props as IArrowLinkPropsInternal).to; const content = ( - + {direction === "left" ? ( diff --git a/src/components/text/Title.tsx b/src/components/text/Title.tsx index 0cc373e1..436a2663 100644 --- a/src/components/text/Title.tsx +++ b/src/components/text/Title.tsx @@ -3,5 +3,5 @@ export interface TitleProps { } export function Title(props: TitleProps) { - return

{props.children}

; + return

{props.children}

; }