Skip to content

Commit 5b3f857

Browse files
committed
fix more bgs
1 parent 2d8a030 commit 5b3f857

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

resources/js/components/assets/Selector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="dark:bg-gray-800 h-full bg-white">
2+
<div class="h-full">
33
<div class="flex h-full min-h-0 flex-col">
44
<div class="flex flex-1 flex-col gap-4 overflow-auto p-4">
55
<AssetBrowser

resources/js/components/fields/Settings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="h-full overflow-auto bg-white dark:bg-gray-800 focus-none p-3 pt-0">
2+
<div class="h-full overflow-auto bg-content-bg dark:bg-dark-content-bg focus-none p-3 pt-0">
33
<div v-if="loading" class="absolute inset-0 z-200 flex items-center justify-center text-center">
44
<Icon name="loading" />
55
</div>

resources/js/components/inputs/relationship/InlinePublishForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:size="stackSize"
99
@closed="close"
1010
>
11-
<div class="h-full overflow-scroll overflow-x-auto bg-white px-6 rounded-l-xl dark:bg-dark-800">
11+
<div class="h-full overflow-scroll overflow-x-auto px-6 rounded-l-xl">
1212
<div v-if="loading" class="absolute inset-0 z-200 flex items-center justify-center text-center">
1313
<Icon name="loading" />
1414
</div>

resources/js/components/inputs/relationship/Selector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="h-full bg-content-bg dark:bg-dark-content-bg rounded-s-xl">
2+
<div class="h-full rounded-s-xl">
33
<div class="flex h-full min-h-0 flex-col">
44
<Listing
55
v-if="filters != null && view === 'list'"

resources/js/components/ui/Stack/Stack.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ provide('closeStack', close);
219219
<transition name="stack-slide">
220220
<div
221221
v-if="visible"
222-
class="stack-content fixed flex flex-col sm:end-1.5 bg-white dark:bg-gray-850 overflow-hidden rounded-xl shadow-[0_8px_5px_-6px_rgba(0,0,0,0.1),_0_3px_8px_0_rgba(0,0,0,0.02),_0_30px_22px_-22px_rgba(39,39,42,0.15)] dark:shadow-[0_5px_20px_rgba(0,0,0,.5)] transition-transform duration-150 ease-out"
222+
class="stack-content fixed flex flex-col sm:end-1.5 bg-content-bg dark:bg-dark-content-bg overflow-hidden rounded-xl shadow-[0_8px_5px_-6px_rgba(0,0,0,0.1),_0_3px_8px_0_rgba(0,0,0,0.02),_0_30px_22px_-22px_rgba(39,39,42,0.15)] dark:shadow-[0_5px_20px_rgba(0,0,0,.5)] transition-transform duration-150 ease-out"
223223
:class="[
224224
size === 'full' ? 'inset-2 w-[calc(100svw-1rem)]' : 'inset-y-2',
225225
{ '-translate-x-4 rtl:translate-x-4': isHovering }

0 commit comments

Comments
 (0)