|
|
|
@ -22,7 +22,7 @@ function CardWithScrollable(props: { children: React.ReactNode }) {
@@ -22,7 +22,7 @@ function CardWithScrollable(props: { children: React.ReactNode }) {
|
|
|
|
|
|
|
|
|
|
function SectionTitle(props: { children: React.ReactNode }) { |
|
|
|
|
return ( |
|
|
|
|
<h3 className="uppercase font-bold text-video-context-type-secondary text-sm pt-8 pl-1 pb-2.5 border-b border-opacity-25 border-video-context-border"> |
|
|
|
|
<h3 className="uppercase font-bold text-video-context-type-secondary text-xs pt-8 pl-1 pb-2.5 border-b border-opacity-25 border-video-context-border"> |
|
|
|
|
{props.children} |
|
|
|
|
</h3> |
|
|
|
|
); |
|
|
|
@ -43,7 +43,9 @@ function LinkTitle(props: { children: React.ReactNode; textClass?: string }) {
@@ -43,7 +43,9 @@ function LinkTitle(props: { children: React.ReactNode; textClass?: string }) {
|
|
|
|
|
|
|
|
|
|
function Section(props: { children: React.ReactNode; className?: string }) { |
|
|
|
|
return ( |
|
|
|
|
<div className={classNames("pt-5", props.className)}>{props.children}</div> |
|
|
|
|
<div className={classNames("pt-4 space-y-1", props.className)}> |
|
|
|
|
{props.children} |
|
|
|
|
</div> |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|