Skip to content

Commit 46fe535

Browse files
committed
docs: update class names table styles
1 parent 32736b3 commit 46fe535

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/docs/src/components/ClassNamesDocs.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,15 @@ const ClassNamesDocs = ({ files }: { files: string | string[] }) => {
106106
<table className="table">
107107
<thead>
108108
<tr>
109+
<th>customClassNames</th>
109110
<th>Class Name</th>
110111
<th>Description</th>
111112
</tr>
112113
</thead>
113114
<tbody>
114115
{sortedClassNames.map((className, index) => (
115-
<tr key={index}>
116+
<tr className="align-middle" key={index}>
117+
<td className="fw-semibold text-primary small">{className.className}</td>
116118
<td>
117119
<code className="text-nowrap">.{className.value}</code>
118120
</td>

0 commit comments

Comments
 (0)