forked from Kispi/Core
fix(webapp): move outer padding into views
This commit is contained in:
parent
1556992050
commit
3841c33564
3 changed files with 9 additions and 5 deletions
|
@ -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"
|
||||||
>
|
>
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
<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">
|
||||||
<h1 class="text-6xl font-bold">John Doe um 17:39:33</h1>
|
<div class="hero-content flex-col text-center">
|
||||||
|
<h1 class="text-6xl font-bold">John Doe um 17:39:33</h1>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<MoleculeDataTable :data="data" />
|
<div class="lg:p-6">
|
||||||
|
<MoleculeDataTable :data="data" />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
|
Loading…
Reference in a new issue