Skip to content

Commit

Permalink
fix: add semi-colon to each declaration (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsn committed Mar 21, 2018
1 parent 8c8de9f commit e83fe23
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/view/components/StyleInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
@input="inputStyleProp(d.path, arguments[0])"
@input-end="finishInputStyleProp(d.path, arguments[0])"
/></span>
<StyleValue
<span class="declaration-value"><StyleValue
:value="d.value"
@input="inputStyleValue(d.path, arguments[0])"
@input-end="finishInputStyleValue(d.path, arguments[0])"
/>
/></span>
</li>
</ul>
</li>
Expand Down Expand Up @@ -128,6 +128,10 @@ export default Vue.extend({
content: ':';
}
.declaration-value::after {
content: ';';
}
.declaration-prop-text {
color: #24b600;
}
Expand Down

0 comments on commit e83fe23

Please sign in to comment.