aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2020-04-11 04:09:44 +0200
committerpacien2020-04-11 04:09:44 +0200
commit0ee006143bbdaabd6fac40a924cf8f1a1aa80be1 (patch)
treec5692592c8b3ff28222bd63497bac597e9b3d110
parenta196acf14daf613e931e39dd0daa927ebc89099d (diff)
downloadldgallery-0ee006143bbdaabd6fac40a924cf8f1a1aa80be1.tar.gz
viewer: ldcommandsearch: fix flexbox shrinking and overlap
GitHub: closes #183
-rw-r--r--viewer/src/components/LdCommandSearch.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/viewer/src/components/LdCommandSearch.vue b/viewer/src/components/LdCommandSearch.vue
index 3d95eb0..b185a51 100644
--- a/viewer/src/components/LdCommandSearch.vue
+++ b/viewer/src/components/LdCommandSearch.vue
@@ -18,7 +18,7 @@
18--> 18-->
19 19
20<template> 20<template>
21 <div class="flex"> 21 <div class="command-search-btn-row">
22 <b-button @click="clear"> 22 <b-button @click="clear">
23 <fa-icon icon="eraser" /> 23 <fa-icon icon="eraser" />
24 <span>{{$t('command.search.clear')}}</span> 24 <span>{{$t('command.search.clear')}}</span>
@@ -48,4 +48,8 @@ export default class LdCommandSearch extends Vue {
48</script> 48</script>
49 49
50<style lang="scss"> 50<style lang="scss">
51.command-search-btn-row {
52 display: flex;
53 flex: none;
54}
51</style> 55</style>