aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.vue
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-04-09 22:23:14 +0200
committerRoger Braun <roger@rogerbraun.net>2017-04-09 22:23:14 +0200
commit36655002d062183a577f5b8fd66628d56670ec1f (patch)
treecda03a02b10fd8958a69927fee2fb272e5c66fb3 /src/components/conversation/conversation.vue
parent112adcf8f83e1bd8dd347ef8ee4de46060b53341 (diff)
parent7ee87c7618bfba986ec7a04581273629a1db9983 (diff)
Merge branch 'develop' into feature/hash-routed
Diffstat (limited to 'src/components/conversation/conversation.vue')
-rw-r--r--src/components/conversation/conversation.vue9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue
index 331cce99..726cfb65 100644
--- a/src/components/conversation/conversation.vue
+++ b/src/components/conversation/conversation.vue
@@ -1,6 +1,6 @@
<template>
<div class="timeline panel panel-default base00-background">
- <div class="panel-heading base01-background base04">
+ <div class="panel-heading base01-background base04 base03-border conversation-heading">
Conversation
<span v-if="collapsable" style="float:right;">
<small><a href="#" @click.prevent="$emit('toggleExpanded')">Collapse</a></small>
@@ -15,3 +15,10 @@
</template>
<script src="./conversation.js"></script>
+
+<style lang="scss">
+ .conversation-heading {
+ border-bottom-style: solid;
+ border-bottom-width: 1px;
+ }
+</style>