Align style switcher.

このコミットが含まれているのは:
Roger Braun 2017-01-17 14:41:13 +01:00
コミット 3be7a3ea85
1個のファイルの変更7行の追加1行の削除

ファイルの表示

@ -1,7 +1,13 @@
<template>
<select v-model="selected">
<select v-model="selected" class="style-switcher">
<option v-for="style in availableStyles" >{{style}}</option>
</select>
</template>
<script src="./style_switcher.js"></script>
<style lang="scss">
.style-switcher {
margin-right: 1em;
}
</style>