move FileItem specific style to its component

This commit is contained in:
axolotle 2022-01-05 17:43:07 +01:00
parent 4547427ac3
commit 343966a2ae
2 changed files with 12 additions and 5 deletions

View file

@ -63,3 +63,13 @@ export default {
} }
} }
</script> </script>
<style lang="scss" scoped>
::v-deep .custom-file-label {
color: $input-placeholder-color;
.btn-danger + .b-form-file & {
color: $input-color;
}
}
</style>

View file

@ -182,12 +182,9 @@ export default {
} }
} }
</script> </script>
<style> <style lang="scss" scoped>
h3.card-title { h3 {
margin-bottom: 1em; margin-bottom: 1em;
border-bottom: solid 1px #aaa; border-bottom: solid 1px #aaa;
} }
.form-control::placeholder, .form-file-text {
color: #6d7780;
}
</style> </style>