Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: ensure consistency in example for class-and-style.md In the inline style are it was written 13 px instead of 30px for the font size. I re write it to 30px (#2007) #2008

Merged
merged 2 commits into from
Apr 26, 2024
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
4 changes: 2 additions & 2 deletions .vitepress/theme/styles/inline-demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
border: 2px solid var(--vt-c-green);
margin-right: 8px;
margin-left: 4px;
line-height: 15px;
padding-left: 4.5px;
line-height: 16px;
padding-left: 4.2px;
font-size: 11px;
}

Expand Down
2 changes: 1 addition & 1 deletion src/guide/essentials/class-and-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ CSS プロパティのキーにはキャメルケース(camelCase)が推奨
```js
const styleObject = reactive({
color: 'red',
fontSize: '13px'
fontSize: '30px'
})
```

Expand Down
Loading