"native" to "builtin" (#788)

This commit is contained in:
Jake Archibald
2020-07-30 14:43:46 +01:00
committed by GitHub
parent 1a26057452
commit ed451e4dfa
6 changed files with 15 additions and 15 deletions

View File

@@ -12,8 +12,8 @@ export default class Select extends Component<Props, State> {
return (
<div class={style.select}>
<select class={`${style.nativeSelect} ${large ? style.large : ''}`} {...otherProps}/>
<svg class={style.arrow} viewBox="0 0 10 5"><path d="M0 0l5 5 5-5z"/></svg>
<select class={`${style.builtinSelect} ${large ? style.large : ''}`} {...otherProps} />
<svg class={style.arrow} viewBox="0 0 10 5"><path d="M0 0l5 5 5-5z" /></svg>
</div>
);
}

View File

@@ -2,7 +2,7 @@
position: relative;
}
.native-select {
.builtin-select {
background: #2f2f2f;
border-radius: 4px;
font: inherit;