Merge pull request #677 from gradido/676-text-color-font-size

text-size in textarea and font-variante if focus
This commit is contained in:
Alexander Friedland 2021-07-29 18:32:50 +02:00 committed by GitHub
commit 10c077e138
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,6 +104,7 @@
rows="3"
v-model="form.memo"
class="pl-3"
style="font-size: large"
></b-form-textarea>
</b-input-group>
<b-col v-if="errors">
@ -197,4 +198,9 @@ export default {
span.errors {
color: red;
}
#input-1:focus,
#input-2:focus,
#input-3:focus {
font-weight: bold;
}
</style>