mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
fix: drag issue on Windows
This commit is contained in:
parent
d798e6df77
commit
e76e67ceea
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div
|
||||
class="flex-1 bg-gray-25 flex justify-center items-center window-drag"
|
||||
class="flex-1 bg-gray-25 flex justify-center items-center"
|
||||
:class="{ 'window-drag': platform !== 'Windows' }"
|
||||
>
|
||||
<!-- Setup Wizard Slide -->
|
||||
@ -8,6 +8,7 @@
|
||||
:primary-disabled="!valuesFilled || loading"
|
||||
@primary-clicked="handlePrimary"
|
||||
@secondary-clicked="handleSecondary"
|
||||
:class="{ 'window-no-drag': platform !== 'Windows' }"
|
||||
>
|
||||
<template #title>
|
||||
{{ t`Setup your organization` }}
|
||||
|
@ -9,13 +9,13 @@
|
||||
<hr />
|
||||
|
||||
<!-- Slide Content -->
|
||||
<div class="window-no-drag">
|
||||
<div>
|
||||
<slot name="content"></slot>
|
||||
</div>
|
||||
|
||||
<!-- Slide Buttons -->
|
||||
<div
|
||||
class="flex justify-between px-4 pb-4 window-no-drag absolute w-form"
|
||||
class="flex justify-between px-4 pb-4 absolute w-form"
|
||||
style="top: 100%; transform: translateY(-100%)"
|
||||
>
|
||||
<Button
|
||||
|
Loading…
Reference in New Issue
Block a user