1
0
forked from noxious/client

Converted last px to tailwind breakpoints

This commit is contained in:
2024-07-21 18:46:13 +02:00
parent fe018528df
commit 71c046a087
4 changed files with 30 additions and 30 deletions

View File

@ -1,18 +1,18 @@
<template>
<div class="flex justify-center items-center h-dvh p-[30px] relative">
<div class="flex justify-center items-center h-dvh p-8 relative">
<GmTools v-if="isLoaded && gameStore.character?.role === 'gm'" />
<GmPanel v-if="isLoaded && gameStore.character?.role === 'gm'" />
<div v-if="!zoneEditorStore.active">
<Game :config="gameConfig" @create="createGame">
<Scene name="main" @preload="preloadScene" @create="createScene">
<div class="flex absolute justify-between left-0 right-0 top-[48px] mx-[48px] my-0">
<div class="flex absolute justify-between left-0 right-0 top-12 mx-12 my-0">
<Hud />
</div>
<div v-if="isLoaded">
<World :key="gameStore.character?.zoneId" />
</div>
<div class="flex absolute justify-between left-0 right-0 bottom-[100px] h-[100px] mx-[48px] my-0">
<div class="flex absolute justify-between left-0 right-0 bottom-24 h-24 mx-12 my-0">
<Chat />
<Menubar />
</div>