Align style switcher.

This commit is contained in:
Roger Braun 2017-01-17 14:41:13 +01:00
parent ef094764cb
commit 3be7a3ea85

View file

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