mirror of
https://github.com/romancm/gamebrary
synced 2024-12-19 15:53:06 +00:00
minor fixes
This commit is contained in:
parent
cb50e88033
commit
f833e68dbc
2 changed files with 10 additions and 7 deletions
|
@ -1,7 +1,9 @@
|
||||||
<template lang="html">
|
<template lang="html">
|
||||||
<div class="platform-picker">
|
<div class="platform-picker">
|
||||||
<b-dropdown
|
<b-dropdown
|
||||||
menu-class="dropdown"
|
menu-class="platforms-dropdown"
|
||||||
|
class="platforms-dropdown"
|
||||||
|
boundary="viewport"
|
||||||
>
|
>
|
||||||
<template v-slot:button-content>
|
<template v-slot:button-content>
|
||||||
{{ dropdownLabel }}
|
{{ dropdownLabel }}
|
||||||
|
@ -70,9 +72,9 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" rel="stylesheet/scss" scoped>
|
<style lang="scss" rel="stylesheet/scss">
|
||||||
.dropdown {
|
.platforms-dropdown {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
max-height: 50vh;
|
max-height: 300px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -12,11 +12,12 @@
|
||||||
|
|
||||||
<b-container fluid>
|
<b-container fluid>
|
||||||
<b-form-row>
|
<b-form-row>
|
||||||
<b-col cols="3">
|
<b-col cols="2" md="3">
|
||||||
<b-list-group>
|
<b-list-group>
|
||||||
<b-list-group-item
|
<b-list-group-item
|
||||||
button
|
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"
|
v-for="release in releases"
|
||||||
:key="release.id"
|
:key="release.id"
|
||||||
:variant="nightMode ? 'dark' : null"
|
:variant="nightMode ? 'dark' : null"
|
||||||
|
@ -31,7 +32,7 @@
|
||||||
</b-list-group>
|
</b-list-group>
|
||||||
</b-col>
|
</b-col>
|
||||||
|
|
||||||
<b-col cols="9">
|
<b-col cols="10" md="9">
|
||||||
<b-card
|
<b-card
|
||||||
:bg-variant="nightMode ? 'dark' : null"
|
:bg-variant="nightMode ? 'dark' : null"
|
||||||
:text-variant="nightMode ? 'white' : null"
|
:text-variant="nightMode ? 'white' : null"
|
||||||
|
|
Loading…
Reference in a new issue