almost finish tailwind transform

This commit is contained in:
2020-04-26 19:23:18 +02:00
parent ca7177f676
commit 578c51eb1a
20 changed files with 188 additions and 105 deletions

View File

@@ -1,10 +1,10 @@
<template>
<div class="flex">
<div class="flex bg-orange-200 h-screen overflow-y-hidden">
<Nav />
<div v-if="authUser" class="w-full">
<div v-if="authUser" class="w-full overflow-y-auto">
<TopBar />
<main class="bg-orange-200">
<router-view :key="$route.fullPath" class="main"></router-view>
<main>
<router-view :key="$route.fullPath"></router-view>
</main>
</div>
</div>