1
0
Fork 0
forked from Kispi/Core

fix(webapp): move outer padding into views

This commit is contained in:
Simon Giesel 2022-07-13 17:45:00 +02:00
parent 1556992050
commit 3841c33564
3 changed files with 9 additions and 5 deletions

View file

@ -5,7 +5,7 @@
type="checkbox" type="checkbox"
class="drawer-toggle" class="drawer-toggle"
/> />
<div class="drawer-content flex flex-col lg:p-6 bg-base-300 h-screen"> <div class="drawer-content flex flex-col bg-base-300 h-screen">
<div <div
class="navbar shadow-lg bg-neutral-focus text-neutral-content lg:hidden sticky top-0 z-50 max-w-7xl place-self-center" class="navbar shadow-lg bg-neutral-focus text-neutral-content lg:hidden sticky top-0 z-50 max-w-7xl place-self-center"
> >

View file

@ -1,9 +1,11 @@
<template> <template>
<div class="hero h-full bg-base-200 rounded-lg"> <div class="min-h-full lg:p-6">
<div class="hero-content text-center"> <div class="hero min-h-full bg-base-200 rounded-lg">
<div class="hero-content flex-col text-center">
<h1 class="text-6xl font-bold">John Doe um 17:39:33</h1> <h1 class="text-6xl font-bold">John Doe um 17:39:33</h1>
</div> </div>
</div> </div>
</div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>

View file

@ -1,5 +1,7 @@
<template> <template>
<div class="lg:p-6">
<MoleculeDataTable :data="data" /> <MoleculeDataTable :data="data" />
</div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>