Skip to content

Commit

Permalink
update ft group selector
Browse files Browse the repository at this point in the history
  • Loading branch information
chienleng committed Dec 13, 2023
1 parent 86d19f2 commit 50be1f8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion components/ui/FuelTechGroupSelector.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="select is-rounded">
<div class="select">
<select v-model="selected">
<option
v-for="(g, index) in groups"
Expand Down Expand Up @@ -52,3 +52,18 @@ export default {
}
}
</script>

<style lang="scss" scoped>
.select:not(.is-multiple):not(.is-loading)::after {
border-color: #333;
border-radius: 0;
border-width: 1px;
}
.select {
select:active, select:focus {
border-color: #333;
box-shadow: none;
}
}
</style>

0 comments on commit 50be1f8

Please sign in to comment.