diff --git a/web/src/components/psc/checklist-table.tsx b/web/src/components/psc/checklist-table.tsx index 18edee3..29fe470 100644 --- a/web/src/components/psc/checklist-table.tsx +++ b/web/src/components/psc/checklist-table.tsx @@ -5,6 +5,8 @@ import Icon from "~/components/core/icon"; import type { Priority, Section, Checklist } from '../../types/PSC'; import { marked } from "marked"; import { useLocalStorage } from "~/hooks/useLocalStorage"; +import styles from './psc.module.css'; + export default component$((props: { section: Section }) => { @@ -301,7 +303,7 @@ export default component$((props: { section: Section }) => { {item.priority} - + )} )} diff --git a/web/src/components/psc/psc.module.css b/web/src/components/psc/psc.module.css index 2e3fe27..a0288c6 100644 --- a/web/src/components/psc/psc.module.css +++ b/web/src/components/psc/psc.module.css @@ -3,3 +3,9 @@ /* I couldn't figure out how to do this with Tailwind.... */ grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } + +.checklistItemDescription { + a { + text-decoration: underline; + } +}