Skip to content

Commit 51398a1

Browse files
committed
Merge branch 'worlds-and-shared-instances-components' into truman/linked-server-instances
2 parents ccee5e0 + 8392ae3 commit 51398a1

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

packages/assets/styles/variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.light-properties {
22
--surface-1: #ebebeb;
3+
--surface-1-5: #ededed;
34
--surface-2: #f5f5f5;
45
--surface-3: #f8f8f8;
56
--surface-4: #ffffff;
@@ -222,6 +223,7 @@ html {
222223
.dark,
223224
:root[data-theme='dark'] {
224225
--surface-1: #16181c;
226+
--surface-1-5: #1a1c20;
225227
--surface-2: #1d1f23;
226228
--surface-3: #27292e;
227229
--surface-4: #34363c;

packages/tooling-config/tailwind/tailwind-preset.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const config: Config = {
66
colors: {
77
surface: {
88
1: 'var(--surface-1)',
9+
1.5: 'var(--surface-1-5)',
910
2: 'var(--surface-2)',
1011
3: 'var(--surface-3)',
1112
4: 'var(--surface-4)',

packages/ui/src/components/base/Table.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<tr
4545
v-for="(row, rowIndex) in data"
4646
:key="rowIndex"
47-
:class="rowIndex % 2 === 0 ? 'bg-surface-2' : 'bg-surface-1'"
47+
:class="rowIndex % 2 === 0 ? 'bg-surface-2' : 'bg-surface-1.5'"
4848
>
4949
<td v-if="showSelection" class="w-10">
5050
<Checkbox

0 commit comments

Comments
 (0)