fix: 修复暗黑模式下注册页面验证码看不清的问题

This commit is contained in:
xiaojunnuo
2026-05-20 18:16:42 +08:00
parent 1e7b057946
commit 5ba33be30f
11 changed files with 160 additions and 11 deletions
@@ -1,5 +1,5 @@
<template>
<div class="flex">
<div class="flex captcha-image-input">
<a-input :value="valueRef" :placeholder="t('certd.captcha.inputImageCode')" autocomplete="off" @update:value="onChange">
<template #prefix>
<fs-icon icon="ion:image-outline"></fs-icon>
@@ -71,3 +71,10 @@ function emitChange(value: any) {
emit("change", value);
}
</script>
<style lang="less">
.captcha-image-input {
.input-right {
background-color: #cfcfcf;
}
}
</style>