minor fixes

This commit is contained in:
Gamebrary 2020-10-15 14:27:53 -07:00
parent cb50e88033
commit f833e68dbc
2 changed files with 10 additions and 7 deletions

View file

@ -1,7 +1,9 @@
<template lang="html">
<div class="platform-picker">
<b-dropdown
menu-class="dropdown"
menu-class="platforms-dropdown"
class="platforms-dropdown"
boundary="viewport"
>
<template v-slot:button-content>
{{ dropdownLabel }}
@ -70,9 +72,9 @@ export default {
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.dropdown {
<style lang="scss" rel="stylesheet/scss">
.platforms-dropdown {
overflow: auto;
max-height: 50vh;
max-height: 300px;
}
</style>

View file

@ -12,11 +12,12 @@
<b-container fluid>
<b-form-row>
<b-col cols="3">
<b-col cols="2" md="3">
<b-list-group>
<b-list-group-item
button
class="d-flex justify-content-between align-items-center"
class="d-flex justify-content-center justify-content-md-between
align-items-center p-2"
v-for="release in releases"
:key="release.id"
:variant="nightMode ? 'dark' : null"
@ -31,7 +32,7 @@
</b-list-group>
</b-col>
<b-col cols="9">
<b-col cols="10" md="9">
<b-card
:bg-variant="nightMode ? 'dark' : null"
:text-variant="nightMode ? 'white' : null"