mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
24 lines
427 B
Markdown
24 lines
427 B
Markdown
# Height & Border Radius
|
|
In case you aren't satisfied with height & border-radius.
|
|
```html
|
|
<n-progress
|
|
type="line"
|
|
:percentage="50"
|
|
:height="24"
|
|
:border-radius="4"
|
|
:fill-border-radius="0"
|
|
/>
|
|
<n-progress
|
|
type="line"
|
|
status="error"
|
|
:percentage="50"
|
|
:height="24"
|
|
border-radius="12px 0 12px 0"
|
|
fill-border-radius="12px 0 12px 0"
|
|
>A Kind of Art</n-progress>
|
|
```
|
|
```css
|
|
.n-progress {
|
|
margin-bottom: 8px;
|
|
}
|
|
``` |