Skip to content

Commit

Permalink
chore(editor): new styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed Mar 22, 2022
1 parent cd61d29 commit 4ae5c81
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,72 @@
v-motion
:initial="{ opacity: 0, y: 10 }"
:enter="{ opacity: 1, y: 0 }"
:delay="100"
:delay="0"
class="flex flex-col justify-start items-start p-5 gap-5"
>
<PDFConfigurationHeader />
<PDFConfigurationSetProject />
<PDFConfigurationSetCover />
<PDFConfigurationSetBase />
<PDFConfigurationSetParagraph />
<PDFConfigurationSetHeadingOne />
<PDFConfigurationSetHeadingTwo />
<PDFConfigurationSetHeadingThree />
<PDFConfigurationSetLineBreak />
<PDFConfigurationSetProject
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="100"
/>
<PDFConfigurationSetCover
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="200"
/>
<PDFConfigurationSetBase
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="300"
/>
<PDFConfigurationSetParagraph
v-motion
:initial="{ opacity: 0, y: 30 }"
:visible-once="{
opacity: 1,
y: 0,
}"
:delay="0"
/>
<PDFConfigurationSetHeadingOne
v-motion
:initial="{ opacity: 0, y: 30 }"
:visible-once="{
opacity: 1,
y: 0,
}"
:delay="0"
/>
<PDFConfigurationSetHeadingTwo
v-motion
:initial="{ opacity: 0, y: 30 }"
:visible-once="{
opacity: 1,
y: 0,
}"
:delay="0"
/>
<PDFConfigurationSetHeadingThree
v-motion
:initial="{ opacity: 0, y: 30 }"
:visible-once="{
opacity: 1,
y: 0,
}"
:delay="0"
/>
<PDFConfigurationSetLineBreak
v-motion
:initial="{ opacity: 0, y: 30 }"
:visible-once="{
opacity: 1,
y: 0,
}"
:delay="0"
/>
</div>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,40 @@
v-motion
:initial="{ opacity: 0 }"
:enter="{ opacity: 1 }"
:delay="100"
:delay="0"
class="wb-configuration-absolute"
>
<EditorProjectPreferencesDefault />
<EditorProjectPreferencesConfiguration />
<EditorProjectPreferencesDropbox v-if="AUTH.dropbox.accessToken" />
<EditorProjectPreferencesEntity />
<EditorProjectPreferencesCommands />
<EditorProjectPreferencesDefault
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="150"
/>
<EditorProjectPreferencesConfiguration
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="250"
/>
<EditorProjectPreferencesDropbox
v-if="AUTH.dropbox.accessToken"
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="350"
/>
<EditorProjectPreferencesEntity
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="450"
/>
<EditorProjectPreferencesCommands
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{ opacity: 1, y: 0 }"
:delay="550"
/>
</div>
</template>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/>
<HeroIcon
v-if="props.src"
class="wb-text"
class="wb-icon"
@click.prevent.stop="onDeleteBase64"
>
<svg
Expand Down

0 comments on commit 4ae5c81

Please sign in to comment.