Skip to content

Commit

Permalink
fixed styling of labels for select boxes (#672)
Browse files Browse the repository at this point in the history
Very nice.
Thanks
  • Loading branch information
sofia-ester-calderon authored Mar 16, 2021
1 parent 3959b51 commit 8371350
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/views/profile/components/RolesNavbar.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<el-form>
{{ $t('route.role') }}
<label>{{ $t('route.role') }}</label>
<el-select
v-model="currentRoleUuid"
:filterable="isFiltrable"
Expand All @@ -15,7 +15,7 @@
/>
</el-select>

{{ $t('route.organization') }}
<label>{{ $t('route.organization') }}</label>
<el-select
v-model="currentOrganizationUuid"
:filterable="isFiltrable"
Expand All @@ -31,7 +31,7 @@
/>
</el-select>

{{ $t('route.warehouse') }}
<label>{{ $t('route.warehouse') }}</label>
<el-select
v-model="currentWarehouseUuid"
:filterable="isFiltrable"
Expand Down Expand Up @@ -157,3 +157,11 @@ export default {
}
}
</script>

<style scoped>
label {
font-weight: 400;
display: block;
margin-top: 5%;
}
</style>

0 comments on commit 8371350

Please sign in to comment.