Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,13 @@
font-size: 14px;
color: var(--vp-color-secondary);
}

div.codeblock {
padding: 20px 24px;
border-radius: 8px;
background-color: white;
}

html.dark div.codeblock {
background-color: var(--vp-c-bg-alt);
}
8 changes: 4 additions & 4 deletions src/docs/en/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ JSDoc comments must include `@description` and `@example`, and if there are para

This JSDoc will be converted into the following documentation.

<div style="background: white; padding: 20px 24px; border-radius: 8px;">
<div class='codeblock'>
<Interface
required
name="name"
Expand Down Expand Up @@ -140,7 +140,7 @@ JSDoc comments must include `@description` and `@example`, and if there are para

This JSDoc will be converted into the following documentation.

<div style="background: white; padding: 20px 24px; border-radius: 8px;">
<div class='codeblock'>
<Interface
name=""
type="[value: string, onChange: () => void]"
Expand Down Expand Up @@ -176,7 +176,7 @@ JSDoc comments must include `@description` and `@example`, and if there are para

This JSDoc will be converted into the following documentation.

<div style="background: white; padding: 20px 24px; border-radius: 8px;">
<div class='codeblock'>
<Interface
name=""
type="Object"
Expand Down Expand Up @@ -271,7 +271,7 @@ All `react-simplikit` implementations use special rendering functions to verify

### Deployment

When changes are merged into the main branch, deployment happens automatically. You can view the deployment results in [GitHub Actions](https://github.com/toss/react-simplikit/actions).
When changes are merged into the `main` branch, deployment happens automatically. You can view the deployment results in [GitHub Actions](https://github.com/toss/react-simplikit/actions).

## Documentation Contribution

Expand Down
6 changes: 3 additions & 3 deletions src/docs/ko/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ JSDoc 주석은 `@description`과 `@example`을 반드시 포함해야 하고,

이 파라미터 JSDoc은 다음과 같은 문서로 변환돼요.

<div style="background: white; padding: 20px 24px; border-radius: 8px;">
<div class='codeblock'>
<Interface
required
name="name"
Expand Down Expand Up @@ -140,7 +140,7 @@ JSDoc 주석은 `@description`과 `@example`을 반드시 포함해야 하고,

이 반환 값 JSDoc은 다음과 같은 문서로 변환돼요.

<div style="background: white; padding: 20px 24px; border-radius: 8px;">
<div class='codeblock'>
<Interface
name=""
type="[value: string, onChange: () => void]"
Expand Down Expand Up @@ -176,7 +176,7 @@ JSDoc 주석은 `@description`과 `@example`을 반드시 포함해야 하고,

이 반환 값 JSDoc은 다음과 같은 문서로 변환돼요.

<div style="background: white; padding: 20px 24px; border-radius: 8px;">
<div class='codeblock'>
<Interface
name=""
type="Object"
Expand Down
Loading