mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 01:51:37 -04:00
Increase subtitle font size
This commit is contained in:
@@ -2,9 +2,5 @@ import clsx from 'clsx'
|
||||
|
||||
export function Subtitle(props: {children: string; className?: string}) {
|
||||
const {children: text, className} = props
|
||||
return (
|
||||
<h2 className={clsx('text-ink-600 inline-block font-semibold sm:text-lg', className)}>
|
||||
{text}
|
||||
</h2>
|
||||
)
|
||||
return <h2 className={clsx('text-ink-600 inline-block font-semibold', className)}>{text}</h2>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user