Skip to content

Commit 20d7bf8

Browse files
fix widget border/outline styles
1 parent bb83b01 commit 20d7bf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/renderer/extensions/vueNodes/widgets/components/WidgetInputNumberInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const buttonTooltip = computed(() => {
113113
<style scoped>
114114
:deep(.p-inputnumber-input) {
115115
background-color: transparent;
116-
border: 1px solid color-mix(in oklab, #d4d4d8 10%, transparent);
116+
border: 1px solid var(--node-stroke);
117117
border-top: transparent;
118118
border-bottom: transparent;
119119
height: 1.625rem;

src/renderer/extensions/vueNodes/widgets/components/layout/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const WidgetInputBaseClass = cn([
66
'text-node-component-widget-input',
77
// Outline
88
'border-none',
9-
'outline outline-offset-[-1px] outline-zinc-300/10',
9+
'outline outline-offset-[-1px] outline-node-stroke',
1010
// Rounded
1111
'rounded-lg',
1212
// Hover

0 commit comments

Comments
 (0)