We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b01ef commit e33c0baCopy full SHA for e33c0ba
src/components/Tiles/ExperienceTile.tsx
@@ -61,9 +61,9 @@ export function ExperienceTile({
61
</div>
62
{responsibilities && responsibilities.length > 0 && (
63
<div className="mt-4">
64
- <ul className="list-inside space-y-1 text-gray-700 dark:text-gray-300">
+ <ul className="list-inside list-['-_'] space-y-1 text-gray-700 dark:text-gray-300">
65
{responsibilities.map((responsibility, index) => (
66
- <li key={index}>- {responsibility}</li>
+ <li key={index}>{responsibility}</li>
67
))}
68
</ul>
69
0 commit comments