Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/components/entries/PublishActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<stack narrow name="publish-options" @closed="$emit('closed')" v-slot="{ close }">
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
<header
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 bg-gray-50 px-4 py-2 dark:border-gray-950 dark:bg-gray-900"
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 px-4 mb-3 py-2 dark:border-gray-950 dark:bg-gray-800"
>
<Heading size="lg">{{ __('Publish') }}</Heading>
<Button icon="x" variant="ghost" class="-me-2" @click="close" />
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/nav/ItemEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<stack narrow name="nav-item-editor" @closed="$emit('closed')" v-slot="{ close }">
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
<div
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 bg-gray-50 px-4 py-2 dark:border-gray-950 dark:bg-gray-900"
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 px-4 mb-3 py-2 dark:border-gray-950 dark:bg-gray-800"
>
<Heading size="lg">{{ creating ? __('Add Nav Item') : __('Edit Nav Item') }}</Heading>
<Button icon="x" variant="ghost" class="-me-2" @click="close" />
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/nav/SectionEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<stack narrow name="nav-item-editor" @closed="$emit('closed')" v-slot="{ close }">
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
<div
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 bg-gray-50 px-4 py-2 dark:border-gray-950 dark:bg-gray-900"
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 px-4 mb-3 py-2 dark:border-gray-950 dark:bg-gray-800"
>
<Heading size="lg">{{ creating ? __('Add Section') : __('Edit Section') }}</Heading>
<Button icon="x" variant="ghost" class="-me-2" @click="close" />
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/revision-history/History.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
<header
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 bg-gray-50 px-4 py-2 dark:border-gray-950 dark:bg-gray-900"
class="flex items-center justify-between rounded-t-xl border-b border-gray-300 px-4 mb-3 py-2 dark:border-gray-950 dark:bg-gray-800"
>
<Heading size="lg">{{ __('Revision History') }}</Heading>
<Button icon="x" variant="ghost" class="-me-2" @click="close" />
Expand Down