forked from noxious/client
Converted last px to tailwind breakpoints
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user