Skip to content

Commit

Permalink
fix(select): fix select dropdown border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
haoziqaq committed May 2, 2023
1 parent 35fe3f9 commit 22d656e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/varlet-ui/src/select/docs/en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ Here are the CSS variables used by the component, Styles can be customized using
| `--select-scroller-background` | `#fff` |
| `--select-scroller-padding` | `6px 0` |
| `--select-scroller-max-height` | `278px` |
| `--select-scroller-border-radius` | `4px` |
| `--select-scroller-border-radius` | `2px` |
| `--select-chip-margin` | `5px 5px 0` |
| `--select-arrow-size` | `20px` |
| `--select-standard-scroller-margin` | `calc(var(--field-decorator-placeholder-size) * 0.75 + 14px) 0 0 0` |
Expand Down
2 changes: 1 addition & 1 deletion packages/varlet-ui/src/select/docs/zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ const value12 = ref()
| `--select-scroller-background` | `#fff` |
| `--select-scroller-padding` | `6px 0` |
| `--select-scroller-max-height` | `278px` |
| `--select-scroller-border-radius` | `4px` |
| `--select-scroller-border-radius` | `2px` |
| `--select-chip-margin` | `5px 5px 0` |
| `--select-arrow-size` | `20px` |
| `--select-standard-scroller-margin` | `calc(var(--field-decorator-placeholder-size) * 0.75 + 14px) 0 0 0` |
Expand Down
2 changes: 1 addition & 1 deletion packages/varlet-ui/src/select/select.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
--select-scroller-background: #fff;
--select-scroller-padding: 6px 0;
--select-scroller-max-height: 278px;
--select-scroller-border-radius: 4px;
--select-scroller-border-radius: 2px;
--select-chip-margin: 5px 5px 0;
--select-arrow-size: 20px;
--select-standard-scroller-margin: calc(var(--field-decorator-placeholder-size) * 0.75 + 12px) 0 0 0;
Expand Down

0 comments on commit 22d656e

Please sign in to comment.