diff --git a/src/components/composer/common/VariableInput.vue b/src/components/composer/common/VariableInput.vue index f1d396f..61d7fb0 100644 --- a/src/components/composer/common/VariableInput.vue +++ b/src/components/composer/common/VariableInput.vue @@ -111,9 +111,21 @@ @@ -411,4 +423,15 @@ export default defineComponent({ .body--dark .option-item:hover { backg: rgba(255, 255, 255, 0.1); } + +.empty-variables-tip { + text-align: center; + font-size: 13px; + opacity: 0.9; + transition: opacity 0.3s ease; +} + +.empty-variables-tip:hover { + opacity: 1; +}