We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bffdb1c + e47a270 commit 164b204Copy full SHA for 164b204
1 file changed
src/components/Preview.vue
@@ -30,7 +30,7 @@
30
</q-btn>
31
</div>
32
<textarea
33
- class="cffstr"
+ v-bind:class="['cffstr', isValidCFF ? '' : 'error']"
34
readonly="true"
35
v-bind:value="cffstr"
36
wrap="hard"
@@ -118,4 +118,9 @@ export default defineComponent({
118
padding-top: 20px;
119
text-align: center;
120
}
121
+.error {
122
+ border-color: #C10015 !important;
123
+ border-width: 2px !important;
124
+}
125
+
126
</style>
0 commit comments