@sakura-ui/sakura-ui 0.1.14 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sakura-ui/sakura-ui",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "keywords": [],
5
5
  "author": "glassonion1",
6
6
  "homepage": "https://github.com/glassonion1/sakura-ui",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sakura-ui/core",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,16 +41,18 @@ export const Question = (props: QuestionProps) => {
41
41
  flex
42
42
  flex-row
43
43
  gap-8
44
+ mt-10
45
+ first:mt-0
44
46
  `
45
47
  return (
46
- <dl
48
+ <dt
47
49
  className={cx(style, headingStyle, className)}
48
50
  itemProp="name"
49
51
  {...restProps}
50
52
  >
51
53
  <span aria-hidden="true">Q</span>
52
54
  <span>{children}</span>
53
- </dl>
55
+ </dt>
54
56
  )
55
57
  }
56
58