|
5 | 5 | <PanelResizer :width="store.builderLayout.leftPanelWidth" side="right" |
6 | 6 | @resize="width => store.builderLayout.leftPanelWidth = width"> |
7 | 7 | </PanelResizer> |
8 | | - <div class="flex w-full rounded-md bg-gray-200 dark:bg-gray-700 p-[2px] text-sm mb-4"> |
| 8 | + <div class="flex w-full rounded-md bg-gray-200 dark:bg-zinc-700 p-[2px] text-sm mb-4"> |
9 | 9 | <button |
10 | 10 | class="rounded-md px-3 py-[3px] flex-1" |
11 | 11 | @click="currentView = 'Pages'" |
12 | | - :class="{ 'bg-white dark:bg-gray-800 dark:text-gray-200 shadow-md': currentView === 'Pages', 'text-gray-700 dark:text-gray-400': currentView !== 'Pages' }"> |
| 12 | + :class="{ 'bg-white dark:bg-zinc-800 dark:text-gray-200 shadow-md': currentView === 'Pages', 'text-gray-700 dark:text-gray-400': currentView !== 'Pages' }"> |
13 | 13 | Pages |
14 | 14 | </button> |
15 | 15 | <button |
16 | 16 | class="ml-1 rounded-md px-3 py-[3px] flex-1" |
17 | 17 | @click="currentView = 'Components'" |
18 | | - :class="{ 'bg-white dark:bg-gray-800 dark:text-gray-200 shadow-md': currentView === 'Components', 'text-gray-700 dark:text-gray-400': currentView !== 'Components'}"> |
| 18 | + :class="{ 'bg-white dark:bg-zinc-800 dark:text-gray-200 shadow-md': currentView === 'Components', 'text-gray-700 dark:text-gray-400': currentView !== 'Components'}"> |
19 | 19 | Components |
20 | 20 | </button> |
21 | 21 | <button |
22 | 22 | class="ml-1 rounded-md px-3 py-[3px] flex-1" |
23 | 23 | @click="currentView = 'Layers'" |
24 | | - :class="{ 'bg-white dark:bg-gray-800 dark:text-gray-200 shadow-md': currentView === 'Layers', 'text-gray-700 dark:text-gray-400': currentView !== 'Layers'}"> |
| 24 | + :class="{ 'bg-white dark:bg-zinc-800 dark:text-gray-200 shadow-md': currentView === 'Layers', 'text-gray-700 dark:text-gray-400': currentView !== 'Layers'}"> |
25 | 25 | Layers |
26 | 26 | </button> |
27 | 27 | </div> |
|
35 | 35 | <div v-for="(page, i) in store.pages"> |
36 | 36 | <ul> |
37 | 37 | <li class="mb-1 flex items-center rounded-md pl-2 cursor-pointer" |
38 | | - :class="{ 'bg-gray-200 dark:bg-gray-700': store.builderState.selectedPage === page.name }" |
| 38 | + :class="{ 'bg-gray-200 dark:bg-zinc-800': store.builderState.selectedPage === page.name }" |
39 | 39 | @click="setPage(page)"> |
40 | 40 | <FeatherIcon name="globe" class="w-3 h-3 text-gray-600 dark:text-gray-200"></FeatherIcon> |
41 | 41 | <a class="p-1 px-2 text-base flex dark:text-gray-200"> |
|
0 commit comments