diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-01-17 14:41:13 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-01-17 14:41:13 +0100 |
| commit | 3be7a3ea85a5fcc6f3eacf8ddeb1fe007573aee4 (patch) | |
| tree | 4a57c15850ec230c1fc676ce677506056d51e710 /src/components/style_switcher/style_switcher.vue | |
| parent | ef094764cbf387d870d8be490b084e766f19178f (diff) | |
Align style switcher.
Diffstat (limited to 'src/components/style_switcher/style_switcher.vue')
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 8c32ed07..bfd8cf86 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -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> |
