diff options
| -rw-r--r-- | resources/assets/stylesheets/scss/talk-bubble.scss | 10 | ||||
| -rw-r--r-- | resources/vue/components/blubber/DialogPanel.vue | 6 |
2 files changed, 6 insertions, 10 deletions
diff --git a/resources/assets/stylesheets/scss/talk-bubble.scss b/resources/assets/stylesheets/scss/talk-bubble.scss index 2da274d..77dee84 100644 --- a/resources/assets/stylesheets/scss/talk-bubble.scss +++ b/resources/assets/stylesheets/scss/talk-bubble.scss @@ -76,15 +76,12 @@ $ownColor: var(--petrol-40); } button { - width: 24px; - height: 24px; + width: 25px; + height: 25px; border: solid thin var(--base-color); background-color: var(--white); cursor: pointer; - - img { - vertical-align: middle; - } + padding: 2px; } } @@ -103,6 +100,7 @@ $ownColor: var(--petrol-40); text-align: right; font-size: 0.8em; margin-bottom: -0.5em; + vertical-align: text-bottom; } } diff --git a/resources/vue/components/blubber/DialogPanel.vue b/resources/vue/components/blubber/DialogPanel.vue index 3afcddf..2a6455a 100644 --- a/resources/vue/components/blubber/DialogPanel.vue +++ b/resources/vue/components/blubber/DialogPanel.vue @@ -1,7 +1,5 @@ <template> - <div> - <BlubberPanel :threadId="threadId" :search="search" v-if="threadId" /> - </div> + <BlubberPanel :threadId="threadId" :search="search" v-if="threadId" /> </template> <script> @@ -30,7 +28,7 @@ export default { }, }, beforeMount() { - this.onSelectThread(this.initialThreadId, false); + this.onSelectThread(this.initialThreadId); }, }; </script> |
