Moved menu up a bit because h-scrollbar

This commit is contained in:
Stefan Zermatten
2023-08-02 15:56:05 +02:00
parent 03e694fcea
commit b0208c76ca

View File

@@ -1,8 +1,8 @@
<template lang="html"> <template lang="html">
<div <div
v-if="creatureId" v-if="creatureId"
class="selected-creature-bar d-flex pa-3 justify-center" class="selected-creature-bar d-flex pa-3"
style="gap: 8px; min-width: 100%;" style="gap: 8px;"
> >
<!-- <!--
<tabletop-buff-icons <tabletop-buff-icons
@@ -133,7 +133,7 @@ export default {
selectedIcon: undefined, selectedIcon: undefined,
menuOpen: false, menuOpen: false,
menuX: 200, menuX: 200,
menuY: window.innerHeight - 200, menuY: window.innerHeight - 216,
}; };
}, },
computed: { computed: {
@@ -360,15 +360,15 @@ export default {
transition: all 0.2s ease; transition: all 0.2s ease;
} }
.tabletop-prop-menu.rows-1 { .tabletop-prop-menu.rows-1 {
bottom: 68px; bottom: 80px;
} }
.tabletop-prop-menu.rows-2 { .tabletop-prop-menu.rows-2 {
bottom: 112px; bottom: 124px;
} }
.tabletop-prop-menu.rows-3 { .tabletop-prop-menu.rows-3 {
bottom: 156px; bottom: 168px;
} }
.tabletop-prop-menu.rows-4 { .tabletop-prop-menu.rows-4 {
bottom: 200px; bottom: 212px;
} }
</style> </style>