mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
incr(ui): elevate form
This commit is contained in:
parent
0c705fe225
commit
069ecd75eb
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="flex flex-col">
|
||||
<!-- Page Header (Title, Buttons, etc) -->
|
||||
<PageHeader :backLink="backLink" :title="title">
|
||||
<PageHeader :backLink="backLink" :title="title" :border="false">
|
||||
<slot name="header" />
|
||||
</PageHeader>
|
||||
|
||||
@ -10,12 +10,12 @@
|
||||
class="
|
||||
border
|
||||
rounded-lg
|
||||
shadow
|
||||
shadow-lg
|
||||
flex flex-col
|
||||
self-center
|
||||
w-form
|
||||
h-full
|
||||
my-4
|
||||
mb-4
|
||||
bg-white
|
||||
"
|
||||
>
|
||||
|
@ -1,9 +1,20 @@
|
||||
<template>
|
||||
<div class="px-4 flex justify-between window-drag border-b items-center h-row-largest flex-shrink-0">
|
||||
<div
|
||||
class="
|
||||
px-4
|
||||
flex
|
||||
justify-between
|
||||
window-drag
|
||||
items-center
|
||||
h-row-largest
|
||||
flex-shrink-0
|
||||
"
|
||||
:class="border ? 'border-b' : ''"
|
||||
>
|
||||
<h1 class="text-xl font-semibold select-none" v-if="title && !backLink">
|
||||
{{ title }}
|
||||
</h1>
|
||||
<BackLink v-if="backLink" class="window-no-drag"/>
|
||||
<BackLink v-if="backLink" class="window-no-drag" />
|
||||
<div class="flex items-stretch window-no-drag gap-2">
|
||||
<slot />
|
||||
<SearchBar v-if="!hideSearch" />
|
||||
@ -19,6 +30,7 @@ export default {
|
||||
title: { type: String, default: '' },
|
||||
backLink: { type: Boolean, default: false },
|
||||
hideSearch: { type: Boolean, default: false },
|
||||
border: { type: Boolean, default: true },
|
||||
},
|
||||
components: { SearchBar, BackLink },
|
||||
};
|
||||
|
@ -7,7 +7,7 @@
|
||||
}"
|
||||
>
|
||||
<div
|
||||
class="w-full w-form shadow rounded-lg border relative"
|
||||
class="w-full w-form shadow-lg rounded-lg border relative"
|
||||
style="height: 700px"
|
||||
>
|
||||
<!-- Welcome to Frappe Books -->
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="w-form shadow rounded-lg border relative" style="height: 700px">
|
||||
<div class="w-form shadow-lg rounded-lg border relative" style="height: 700px">
|
||||
<!-- Slide Title -->
|
||||
<div class="p-4">
|
||||
<h1 class="text-2xl font-semibold select-none">
|
||||
|
Loading…
Reference in New Issue
Block a user