diff --git a/src/components/PropertiesPanel.vue b/src/components/PropertiesPanel.vue
index 7f54901ed..5499e790e 100644
--- a/src/components/PropertiesPanel.vue
+++ b/src/components/PropertiesPanel.vue
@@ -2,8 +2,6 @@
import { computed, ref } from 'vue'
import { onClickOutside } from '@vueuse/core'
-import { SliderRange, SliderRoot, SliderThumb, SliderTrack } from 'reka-ui'
-
import ColorPicker from './ColorPicker.vue'
import { useEditorStore } from '../stores/editor'
@@ -216,21 +214,18 @@ function colorHex(c: Color) {
-
-
Opacity
-
updateProp('opacity', (v?.[0] ?? 100) / 100)"
- >
-
-
-
-
-
-
{{ Math.round((store.selectedNodes.value[0]?.opacity ?? 1) * 100) }}%
+
+
@@ -543,21 +538,18 @@ function colorHex(c: Color) {
-
-
Opacity
-
updateProp('opacity', (v?.[0] ?? 100) / 100)"
- >
-
-
-
-
-
-
{{ Math.round(node.opacity * 100) }}%
+
+
@@ -762,56 +754,10 @@ function colorHex(c: Color) {
font-size: 12px;
}
-.opacity-row {
- display: flex;
- align-items: center;
- gap: 8px;
-}
-
-.slider-root {
- position: relative;
- display: flex;
- align-items: center;
- flex: 1;
- height: 16px;
- cursor: pointer;
- user-select: none;
- touch-action: none;
-}
-
-.slider-track {
- position: relative;
- flex-grow: 1;
- height: 3px;
- background: var(--border);
- border-radius: 2px;
-}
-
-.slider-range {
- position: absolute;
- height: 100%;
- background: var(--accent, #3b82f6);
- border-radius: 2px;
-}
-
-.slider-thumb {
- display: block;
- width: 10px;
- height: 10px;
- background: white;
- border-radius: 50%;
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
- outline: none;
- cursor: pointer;
- transition: box-shadow 0.1s;
-}
-
-.slider-thumb:hover {
- box-shadow: 0 0 0 2px var(--accent, #3b82f6);
-}
-
-.slider-thumb:focus-visible {
- box-shadow: 0 0 0 2px var(--accent, #3b82f6);
+.input-suffix {
+ font-size: 11px;
+ color: var(--text-muted);
+ flex-shrink: 0;
}
.prop-value {