Skip to content

Commit 5d3313f

Browse files
committed
Stack headers - remove background and even out spacing
1 parent 0ff800c commit 5d3313f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

resources/js/components/entries/PublishActions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<stack narrow name="publish-options" @closed="$emit('closed')" v-slot="{ close }">
33
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
44
<header
5-
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"
5+
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"
66
>
77
<Heading size="lg">{{ __('Publish') }}</Heading>
88
<Button icon="x" variant="ghost" class="-me-2" @click="close" />

resources/js/components/nav/ItemEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<stack narrow name="nav-item-editor" @closed="$emit('closed')" v-slot="{ close }">
33
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
44
<div
5-
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"
5+
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"
66
>
77
<Heading size="lg">{{ creating ? __('Add Nav Item') : __('Edit Nav Item') }}</Heading>
88
<Button icon="x" variant="ghost" class="-me-2" @click="close" />

resources/js/components/nav/SectionEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<stack narrow name="nav-item-editor" @closed="$emit('closed')" v-slot="{ close }">
33
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
44
<div
5-
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"
5+
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"
66
>
77
<Heading size="lg">{{ creating ? __('Add Section') : __('Edit Section') }}</Heading>
88
<Button icon="x" variant="ghost" class="-me-2" @click="close" />

resources/js/components/revision-history/History.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="m-2 flex h-full flex-col rounded-xl bg-white dark:bg-gray-800">
33
<header
4-
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"
4+
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"
55
>
66
<Heading size="lg">{{ __('Revision History') }}</Heading>
77
<Button icon="x" variant="ghost" class="-me-2" @click="close" />

0 commit comments

Comments
 (0)