fix platform picker overflow

This commit is contained in:
Roman Cervantes 2020-10-14 16:57:10 -07:00
parent 3fa09a73bc
commit cb50e88033

View file

@ -1,6 +1,8 @@
<template lang="html">
<div class="platform-picker">
<b-dropdown>
<b-dropdown
menu-class="dropdown"
>
<template v-slot:button-content>
{{ dropdownLabel }}
</template>
@ -67,3 +69,10 @@ export default {
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.dropdown {
overflow: auto;
max-height: 50vh;
}
</style>