refs #59 Use deep selector for element-ui tag

This commit is contained in:
AkiraFukushima 2018-03-14 17:14:47 +09:00
parent e0886921d8
commit 40d293f7b4
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
title="New Toot"
:visible.sync="newTootModal"
width="400px"
custom-class="new-toot-modal" v-on:submit.prevent="toot">
class="new-toot-modal" v-on:submit.prevent="toot">
<el-form :model="tootForm">
<div class="body">
<textarea v-model="tootForm.body" ref="body" @keyup.ctrl.enter.exact="toot" @keyup.meta.enter.exact="toot"></textarea>
@ -72,8 +72,8 @@ export default {
}
</script>
<style lang="scss">
.new-toot-modal {
<style lang="scss" scoped>
.new-toot-modal /deep/ {
.el-dialog__header {
background-color: #4a5664;