feat: use tint color for pref section headers

This commit is contained in:
Mo
2022-05-13 09:36:22 -05:00
parent c99c20b6ec
commit 754a189532

View File

@@ -2,7 +2,7 @@ import { FunctionComponent } from 'preact'
export const Title: FunctionComponent = ({ children }) => (
<>
<h2 className="text-base m-0 mb-1">{children}</h2>
<h2 className="text-base m-0 mb-1 info">{children}</h2>
<div className="min-h-2" />
</>
)