Skip to content

Commit b9aed99

Browse files
committed
code review
1 parent d1d404f commit b9aed99

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

packages/ui-components/Common/DataTag/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424

2525
&.event {
26-
@apply bg-purple-600;
26+
@apply bg-accent1-600;
2727
}
2828

2929
&.method {
@@ -47,6 +47,6 @@
4747
}
4848

4949
&.ctor {
50-
@apply bg-pink-600;
50+
@apply bg-accent2-600;
5151
}
5252
}

packages/ui-components/Common/DataTag/index.stories.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ export const DataTags: Story = {
1111
{['event', 'method', 'property', 'class', 'module', 'classMethod', 'ctor']
1212
.map(kind =>
1313
['sm', 'md', 'lg'].map(size => (
14-
<div key={`${kind}-${size}`} className="flex justify-center">
14+
<div
15+
key={`${kind}-${size}`}
16+
className="flex justify-center"
17+
title={kind}
18+
>
1519
<DataTag
1620
kind={kind as DataTagProps['kind']}
1721
size={size as DataTagProps['size']}

0 commit comments

Comments
 (0)