mirror of
https://github.com/romancm/gamebrary
synced 2024-12-19 15:53:06 +00:00
fix platform picker overflow
This commit is contained in:
parent
3fa09a73bc
commit
cb50e88033
1 changed files with 10 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue